We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08f714a commit 930d561Copy full SHA for 930d561
.github/workflows/render_site.yaml
@@ -33,12 +33,12 @@ jobs:
33
34
- uses: r-lib/actions/setup-r-dependencies@v2
35
with:
36
- extra-packages: any::rmarkdown
37
- needs: website
+ extra-packages: |
+ any::rmarkdown
38
+ any::knitr
39
- - name: Build site
40
- run: rmarkdown::render_site("rmd")
41
- shell: Rscript {0}
+ - name: Render RMarkdown site
+ run: Rscript -e 'rmarkdown::render_site("rmd")'
42
43
- name: Deploy to GitHub pages 🚀
44
if: github.event_name != 'pull_request'
0 commit comments