Skip to content

fix root of StagyyPar when a default par is used #24

fix root of StagyyPar when a default par is used

fix root of StagyyPar when a default par is used #24

Workflow file for this run

name: docs
on:
push:
branches:
- master
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
UV_PYTHON: 3.12
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v2
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
- run: uv sync
- run: just mkdocs build --strict -d site
- uses: actions/upload-pages-artifact@v3
with:
path: "site/"
deploy:
needs: build
if: ${{ github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags/v') }}
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/deploy-pages@v4
id: deployment