update day 1 slides #46
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: main | |
| name: Render & Deploy Site | |
| jobs: | |
| build: | |
| runs-on: macOS-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: r-lib/actions/setup-r@v2 | |
| - uses: r-lib/actions/setup-pandoc@v2 | |
| - name: Install dependencies | |
| run: | | |
| install.packages("rmarkdown") | |
| install.packages("distill") | |
| install.packages("fontawesome") | |
| shell: Rscript {0} | |
| - name: Render Site | |
| run: Rscript -e 'rmarkdown::render_site(encoding = "UTF-8")' | |
| - name: Commit results | |
| run: | | |
| git add -A | |
| git commit -m 'Rebuild site' || echo "No changes to commit" | |
| git push origin || echo "No changes to commit" |