Skip to content

build

build #1461

Workflow file for this run

on:
push:
paths:
- index.Rmd
schedule:
- cron: "0 12 * * *"
name: build
jobs:
render:
name: build
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
- uses: r-lib/actions/setup-r-dependencies@v2
with:
packages: |
any::rmarkdown
- name: Render index
run: Rscript -e 'rmarkdown::render("index.Rmd")'
- name: Commit results
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git add -A
git commit -m 'Re-build index.Rmd' || echo "No changes to commit"
git push origin || echo "No changes to commit"