Skip to content

remove datatools (#34) #11

remove datatools (#34)

remove datatools (#34) #11

Workflow file for this run

on:
push:
branches:
- main
name: Render and Publish Quarto Site
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: quarto-dev/quarto-actions/setup@v2
- name: Render site
run: quarto render
- name: Commit and push rendered docs
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add docs/
if git diff --cached --quiet; then
echo "No changes to commit."
else
git commit -m "Update rendered site"
git push origin main
fi