Skip to content

gitignore

gitignore #87

Workflow file for this run

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@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install nox
shell: bash
run: |
python3 -m pip install --upgrade pip
python3 -m pip install nox nox-poetry poetry
- 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@v4
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@v4
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@v3
with:
path: docs/build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4