Skip to content

Commit 9990c88

Browse files
committed
Fix syntax error in pkgdown workflow
1 parent fa5a141 commit 9990c88

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pkgdown.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
# Install dependencies
2424
- name: Install dependencies
2525
run: |
26-
install.packages('remotes')
27-
remotes::install_deps(dependencies = TRUE)
26+
Rscript -e "install.packages('remotes')"
27+
Rscript -e "remotes::install_deps(dependencies = TRUE)"
2828
2929
# Build the pkgdown site
3030
- name: Build pkgdown site
3131
run: |
32-
install.packages('pkgdown')
33-
pkgdown::build_site()
32+
Rscript -e "install.packages('pkgdown')"
33+
Rscript -e "pkgdown::build_site()"
3434
3535
# Deploy to gh-pages branch
3636
- name: Deploy to GitHub Pages

0 commit comments

Comments
 (0)