Skip to content

Bump stefanzweifel/git-auto-commit-action from 4 to 5 #130

Bump stefanzweifel/git-auto-commit-action from 4 to 5

Bump stefanzweifel/git-auto-commit-action from 4 to 5 #130

Workflow file for this run

on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
schedule:
# * is a special character in YAML so you have to quote this string
# Trigger once a week, on a Sunday (0)
- cron: "0 0 * * 0"
name: render-README
jobs:
render-README:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: "3.1.8"
- uses: quarto-dev/quarto-actions/setup@v2
with:
version: pre-release
- run: |
quarto --version
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
pak-version: devel
extra-packages: |
quarto-dev/quarto-r
- name: Render README
run: |
options(crayon.enabled = TRUE)
quarto::quarto_render("README.qmd", output_format = "html")
fs::file_copy("README.html", "index.html", overwrite = TRUE)
shell: Rscript {0}
- uses: stefanzweifel/git-auto-commit-action@v5