Skip to content

Make Alex Axthelm maintainer #221

Make Alex Axthelm maintainer

Make Alex Axthelm maintainer #221

Workflow file for this run

on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
name: Render README
jobs:
render:
name: Render README
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v1
- uses: r-lib/actions/setup-pandoc@v1
- name: Install r2dii.data, r2dii.match, rmarkdown, remotes, and the local package
run: |
install.packages("r2dii.data")
install.packages("r2dii.match")
install.packages("remotes")
remotes::install_local(".")
remotes::install_cran("rmarkdown")
shell: Rscript {0}
- name: Render README
run: Rscript -e 'rmarkdown::render("README.Rmd")'
- name: Commit results
run: |
git config --local user.email "[email protected]"
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"