Release 8.0.2 #54
This file contains 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' | |
- '7.0' | |
- '7.1' | |
- '7.2' | |
- '8.0' | |
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@v4 | |
- 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/[email protected] | |
with: | |
branch: gh-pages | |
folder: test_results/pip-docs/html | |
target-folder: ${{ github.ref_name }} | |
strategy: | |
fail-fast: false |