Skip to content

Add generator script and update CI workflow #8

Add generator script and update CI workflow

Add generator script and update CI workflow #8

Workflow file for this run

on:
push:
branches:
- main
workflow_dispatch:
name: Quarto Publish
jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: python -m pip install --upgrade pip beautifulsoup4
- name: Generate static project pages
run: python tools/generate_projects.py
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'