Skip to content

[IMPROVEMENT] Fix github pages deploy #444 #288

[IMPROVEMENT] Fix github pages deploy #444

[IMPROVEMENT] Fix github pages deploy #444 #288

Workflow file for this run

name: "Sphinx Documentation"
on:
push:
branches:
- master
pull_request:
branches:
- master
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
name: Build Sphinx Documentation
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
setup.cfg
docker/requirements.txt
- name: Build Docs
run: make docs
env:
SYSTEM_PYTHON: python${{ matrix.python-version }}
SECRET_KEY: github-actions
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v2
with:
path: 'dist/html'
deploy:
needs: build
if: ${{ github.ref_name == github.event.repository.default_branch }}
permissions:
pages: write
id-token: write
environment:
name: production
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-20.04
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2