update yml file #9
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 documents with rmarkdown-action | |
on: [push] | |
jobs: | |
render: | |
name: Render my tutorials | |
runs-on: ubuntu-latest | |
env: | |
GH_PAT : ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: r-lib/actions/setup-r@v2 | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- uses: r-lib/actions/setup-tinytex@v2 | |
- name: Install rmarkdown | |
run: Rscript -e 'install.packages("rmarkdown")' | |
- name: Render document | |
run: Rscript ./doc/render.R | |
- name: Commit result | |
run: | | |
git config --local user.name "$GITHUB_ACTOR" | |
git config --local user.email "[email protected]" | |
git add -A | |
git commit -am "Sheets built!" || echo "No changes to commit" | |
git push origin || echo "No change to push !" |