Skip to content

Update pages.csv

Update pages.csv #115

Workflow file for this run

name: Render website
on: [push, pull_request]
jobs:
quarto-ubuntu:
runs-on: Ubuntu-latest
container: ghcr.io/uofuepibio/phs7045-advanced-programming:fall2024
steps:
- uses: actions/checkout@v3
- name: Render
run: |
make -B README.md
- name: Commit results
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
git add docs/* || echo Nothing to be added
git commit -a -m 'Re-build examples' || echo Nothing has changed
git push origin || echo "No changes to commit"