- Notifications
You must be signed in to change notification settings - Fork71
Bumped version number to next expected release#124
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
| # This workflow builds Sphinx documentation and deploys it to GitHub Pages. | |
| name:Publish documentation | |
| on: | |
| push: | |
| branches:[main]# branch to trigger deployment | |
| paths: | |
| -"docs/**" | |
| -"constraint/**" | |
| -"pyproject.toml" | |
| -".github/workflows/publish-documentation.yml" | |
| release: | |
| types:[published]# releases trigger deployment as well | |
| jobs: | |
| pages: | |
| runs-on:ubuntu-latest | |
| environment: | |
| name:github-pages | |
| url:${{ steps.deployment.outputs.page_url }} | |
| permissions: | |
| pages:write | |
| id-token:write | |
| steps: | |
| -id:deployment | |
| uses:sphinx-notes/pages@v3 |