Skip to content

Update _pkgdown.yml (#24) #31

Update _pkgdown.yml (#24)

Update _pkgdown.yml (#24) #31

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"