ci: fix publish job #126
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: Documentation CI/CD | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - '*' # Later: \b[0-9]\.[0-9]+\.[0-9]+[ab]?[0-9]?\b | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| name: Build doc | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version-file: .python-version | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install package with extra 'doc' | |
| run: uv sync --extra doc --dev | |
| - name: Run MkDocs build | |
| working-directory: ./docs | |
| run: uv run mkdocs build | |
| - name: Upload Pages artifact | |
| uses: actions/upload-pages-artifact@v4 | |
| with: | |
| path: docs/site/ | |
| publish: | |
| if: success() && startsWith(github.ref, 'refs/tags') | |
| name: Publish doc | |
| needs: build | |
| permissions: | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |