Render my document #1490
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: | |
workflow_dispatch: | |
schedule: | |
- cron: '1 0,12 * * *' | |
name: Render my document | |
jobs: | |
render: | |
name: Render my document | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: r-lib/actions/setup-r@v2 | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- name: Install rmarkdown | |
run: Rscript -e 'install.packages(c("rmarkdown", "jsonlite", "curl", "glue"))' | |
- name: Render my document to all types | |
run: Rscript -e 'rmarkdown::render("README.Rmd", output_format = "github_document")' | |
- name: Commit results | |
run: | | |
git add README* | |
git commit -m 'Re-build my-document' || echo "No changes to commit" | |
git push origin || echo "No changes to commit" |