Skip to content

Merge pull request #45 from hephy-dd/devel-0.8.x #21

Merge pull request #45 from hephy-dd/devel-0.8.x

Merge pull request #45 from hephy-dd/devel-0.8.x #21

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
jobs:
build-deploy:
name: Build and deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3
uses: actions/setup-python@v2
- name: Install dependencies
run: |
pip install --upgrade pip
pip install mkdocs==1.3.*
- name: Build
run: mkdocs build --strict
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --strict --force