Skip to content

fix links

fix links #23

Workflow file for this run

on:
workflow_dispatch:
push:
branches: main
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 Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
activate-environment: true
- run: uv add jupyter pyyaml
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Install curl
run: |
sudo apt-get update
sudo apt-get install -y curl jq unzip
- name: Download data
run: |
sh data/downloadLabourData.sh
- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}