render readme #86
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
name: render readme | |
# Controls when the action will run | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 18 * * 2' | |
jobs: | |
render: | |
# The type of runner that the job will run on | |
runs-on: macOS-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- uses: r-lib/actions/setup-r@v1 | |
- uses: r-lib/actions/setup-pandoc@v1 | |
# install packages needed | |
- name: install required packages | |
run: Rscript -e 'install.packages(c("rmarkdown","prettydog","tidyverse","treemapify","patchwork", "downloader", "rnaturalearth", "rnaturalearthdata", "ggdist"))' | |
# Render READEME.md using rmarkdown | |
- name: render README | |
run: Rscript -e 'rmarkdown::render("README.Rmd", output_format = "md_document")' | |
- name: commit rendered README | |
run: | | |
git add README.md man/figures/README-* | |
git commit -m "Re-build README.md" || echo "No changes to commit" | |
git push origin main || echo "No changes to commit" |