Merge pull request #160 from DecaturMakers/automate-release-on-versio… #170
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: Build & Deploy GH-Pages | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: Install nox | |
| shell: bash | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| python3 -m pip install nox nox-poetry poetry poetry-plugin-export | |
| - name: Build Sphinx | |
| shell: bash | |
| env: | |
| GITHUB_REF_NAME: ${{ github.event.client_payload.pull_request.head.ref || github.event.pull_request.head.ref || github.ref_name }} | |
| run: | | |
| nox --non-interactive --session=docs | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: build | |
| path: docs/build | |
| if-no-files-found: error | |
| retention-days: 7 | |
| deploy: | |
| if: github.ref == 'refs/heads/main' | |
| needs: | |
| - build | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| steps: | |
| - uses: actions/download-artifact@v8 | |
| with: | |
| name: build | |
| path: docs/build | |
| - name: Touch nojekyll | |
| shell: bash | |
| run: | | |
| touch docs/build/.nojekyll | |
| - name: Upload Pages artifact | |
| uses: actions/upload-pages-artifact@v5 | |
| with: | |
| path: docs/build | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v5 |