Skip to content

Merge pull request #83 from christian-wolf-eks/dependabot/pip/charset… #187

Merge pull request #83 from christian-wolf-eks/dependabot/pip/charset…

Merge pull request #83 from christian-wolf-eks/dependabot/pip/charset… #187

Workflow file for this run

name: Deploy with GitHub Pages dependencies preinstalled
on:
# Runs on pushes targeting the default branch
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
defaults:
run:
shell: bash
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Cache python venv
uses: actions/cache@v4
with:
path: venv
key: venv-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
restore-keys: |-
venv-${{ runner.os }}-
- name: Create python venv
run: python -m venv venv
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build documentation
run: make dist
- name: Upload artifact
uses: actions/[email protected]
with:
path: _build/html
retention-days: 7
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
if: github.ref_name == 'main'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4