Ref new pacta.pkgdown.rmitemplate #29
Workflow file for this run
This file contains 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] | |
pull_request: | |
branches: [main] | |
name: Render README | |
jobs: | |
render: | |
name: Render README | |
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 pak, and the local package | |
run: | | |
install.packages("pak") | |
pak::local_install(".") | |
pak::pak("rmarkdown") | |
shell: Rscript {0} | |
- name: Render README | |
run: Rscript -e 'rmarkdown::render("README.Rmd")' | |
- name: Commit results | |
run: | | |
git config --local user.email "actions@github.com" | |
git config --local user.name "GitHub Actions" | |
git commit README.md -m 'Re-build README.Rmd' || echo "No changes to commit" | |
git push origin || echo "No changes to commit" |