Skip to content

REL: 1.3.5: default table format #24

REL: 1.3.5: default table format

REL: 1.3.5: default table format #24

Workflow file for this run

#SPDX-FileCopyrightText: 2023 Intevation GmbH
#SPDX-License-Identifier: AGPL-3.0-or-later
# Template: https://github.com/actions/starter-workflows/blob/main/pages/hugo.yml
#
name: "Build and push docs"
on:
# Runs on pushes targeting the master branch
push:
branches: [master]
# 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
jobs:
build-docs:
runs-on: ubuntu-latest
name: Build the documentation
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
with:
enablement: true
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Sphinx
run: pip install Sphinx
- name: Build docs
run: make -C docs html
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./docs/_build/html/
# Deployment job
deploy-docs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build-docs
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2