Release 26.4.0 #84
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
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - develop | |
| - 25.5 | |
| - 25.11 | |
| paths: | |
| - docs/** | |
| name: Build Docs and push results to gh-pages branch | |
| permissions: | |
| contents: write | |
| jobs: | |
| docs: | |
| name: Build Documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12 || 3.13 || 3.14' | |
| - name: Install deps | |
| run: pip install click sphinx sqlalchemy_schemadisplay | |
| - name: Build the docs | |
| run: devel/ci/bodhi-ci docs -r pip | |
| - name: Deploy | |
| uses: JamesIves/github-pages-deploy-action@v4.8.0 | |
| with: | |
| branch: gh-pages | |
| folder: test_results/pip-docs/html | |
| target-folder: ${{ github.ref_name }} | |
| strategy: | |
| fail-fast: false |