-
-
Notifications
You must be signed in to change notification settings - Fork 49
47 lines (40 loc) · 1.23 KB
/
build_and_publish_documentation.yaml
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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
name: Build and publish documentation
on:
workflow_dispatch:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python for MkDocs
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Generate MkDocs static files
run: |
pip install --no-cache-dir --force-reinstall mkdocs-material
mkdir -pm755 /opt/mkdocs
mkdocs build --strict --verbose --site-dir /opt/mkdocs
- name: Upload MkDocs artifacts
uses: actions/upload-pages-artifact@v3
with:
path: /opt/mkdocs/
retention-days: 1
publish:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4