Skip to content

Commit

Permalink
add for issue #202
Browse files Browse the repository at this point in the history
  • Loading branch information
epijim committed Jul 13, 2021
1 parent b78dd18 commit 716a902
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/rebuild-readme.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
on:
push:
paths:
- 'README.Rmd'

name: Render README

jobs:
render:
name: Render README
runs-on: macOS-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v1
- uses: r-lib/actions/setup-pandoc@v1
- name: Install rmarkdown, remotes, and the local package
run: |
install.packages("remotes")
remotes::install_local(".")
remotes::install_cran("rmarkdown")
remotes::install_cran("magrittr")
remotes::install_cran("dplyr")
remotes::install_cran("ggplot2")
remotes::install_cran("glue")
remotes::install_github("lorenzwalthert/gitsum")
remotes::install_github("pharmaR/riskmetric")
install.packages("ggthemes")
shell: Rscript {0}
- name: Render README
run: |
RMD_PATH=$(git diff-tree --no-commit-id --name-only -r ${{ github.event.push.ref }} | grep '[.]Rmd$' | head -n 1)
Rscript -e 'rmarkdown::render(commandArgs(TRUE))' ${RMD_PATH}
- 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"

0 comments on commit 716a902

Please sign in to comment.