updated to enable working with ek5 directories #30
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: | |
name: update-pkgdown-site | |
jobs: | |
update-pkgdown-site: | |
runs-on: macOS-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: r-lib/actions/setup-r@v2 | |
- uses: r-lib/actions/setup-pandoc@v1 | |
- name: Install packages | |
run: Rscript -e 'install.packages(c("pkgdown", "roxygen2", "knitr"))' | |
- name: Update R function documentation | |
run: Rscript -e 'roxygen2::roxygenize()' | |
- name: Update Readme.md | |
run: Rscript -e 'knitr::knit("Readme.Rmd")' | |
- name: Build site | |
run: Rscript -e 'pkgdown::build_site()' | |
- name: Set up Git | |
run: | | |
git config --local user.email "actions@github.com" | |
git config --local user.name "GitHub Actions" | |
- name: Commit all changes | |
run: | | |
git add -A && git commit -m 'Build site' || echo "No changes to commit" | |
git push origin || echo "No changes to commit" |