Skip to content

feat: allow prereleases if a prerelease version is pinned for a speci… #796

feat: allow prereleases if a prerelease version is pinned for a speci…

feat: allow prereleases if a prerelease version is pinned for a speci… #796

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
paths:
- "*.md"
- docs/**
- .github/workflows/doc.yml
- "pdm/**"
jobs:
build-doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.11
architecture: "x64"
- name: Install Dependencies
run: |
pip install -U .
pdm install -G doc
- name: Build Documentation
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git fetch origin gh-pages:gh-pages
cd docs && pdm run mike deploy --update-aliases dev
git push origin gh-pages