Skip to content

Merge pull request #9 from Bayer-Group/m-lueb-patch-1 #8

Merge pull request #9 from Bayer-Group/m-lueb-patch-1

Merge pull request #9 from Bayer-Group/m-lueb-patch-1 #8

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Docs Pages
on:
push:
branches: ["main"]
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
jobs:
# Compile the pages
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install sphinx sphinx-rtd-theme
- name: Build the docs
run: |
cd docs
make html
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: html-pages
path: docs/_build/html
# Deploy the pages
deploy:
needs:
- build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Download the pages
uses: actions/download-artifact@v3
with:
name: html-pages
path: html/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'html'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4