File tree 1 file changed +21
-9
lines changed
1 file changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -28,15 +28,27 @@ jobs:
28
28
29
29
- uses : r-lib/actions/setup-pandoc@v2
30
30
31
- - uses : r-lib/actions/setup-r@v2
32
- with :
33
- use-public-rspm : true
34
-
35
- - uses : r-lib/actions/setup-r-dependencies@v2
36
- with :
37
- extra-packages : any::pkgdown, local::.
38
- needs : website
39
-
31
+ # - uses: r-lib/actions/setup-r@v2
32
+ # with:
33
+ # use-public-rspm: true
34
+
35
+ # - uses: r-lib/actions/setup-r-dependencies@v2
36
+ # with:
37
+ # extra-packages: any::pkgdown, local::.
38
+ # needs: website
39
+
40
+ - name : Setup r2u
41
+ uses : eddelbuettel/github-actions/r2u-setup@master
42
+
43
+ - name : Install remotes and pkgdown
44
+ run : Rscript -e 'install.packages(c("remotes", "pkgdown"))'
45
+
46
+ - name : Install all Dependencies
47
+ run : Rscript -e 'remotes::install_deps(".", dependencies=TRUE)'
48
+
49
+ - name : Install package itself
50
+ run : R CMD INSTALL .
51
+
40
52
- name : Build site
41
53
run : pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
42
54
shell : Rscript {0}
You can’t perform that action at this time.
0 commit comments