We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa5a141 commit 9990c88Copy full SHA for 9990c88
.github/workflows/pkgdown.yaml
@@ -23,14 +23,14 @@ jobs:
23
# Install dependencies
24
- name: Install dependencies
25
run: |
26
- install.packages('remotes')
27
- remotes::install_deps(dependencies = TRUE)
+ Rscript -e "install.packages('remotes')"
+ Rscript -e "remotes::install_deps(dependencies = TRUE)"
28
29
# Build the pkgdown site
30
- name: Build pkgdown site
31
32
- install.packages('pkgdown')
33
- pkgdown::build_site()
+ Rscript -e "install.packages('pkgdown')"
+ Rscript -e "pkgdown::build_site()"
34
35
# Deploy to gh-pages branch
36
- name: Deploy to GitHub Pages
0 commit comments