-
Notifications
You must be signed in to change notification settings - Fork 7
47 lines (43 loc) · 1.15 KB
/
mkdocs_deploy.yml
File metadata and controls
47 lines (43 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Build docs and deploy to GH Pages
on:
push:
branches:
- main
# Allows manual run from the Actions tab
workflow_dispatch:
jobs:
build-docs:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Setup python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install packages
run: |
python3 -m pip install --upgrade pip
python3 -m pip install .[docs] --extra-index-url=https://packages.idmod.org/api/pypi/pypi-production/simple
- name: Build static files
run: |
mkdocs build -d site
- name: Upload static files as artifact
id: deployment
uses: actions/upload-pages-artifact@v4
with:
path: site/
deploy-docs:
name: Deploy docs
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }} # Not used
permissions:
id-token: write
pages: write
needs: build-docs
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4