-
Notifications
You must be signed in to change notification settings - Fork 36
47 lines (41 loc) · 1001 Bytes
/
github-page.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
name: github pages
on:
push:
branches:
- master
paths:
- "docs/**"
- "!docs/untranslated.json"
- "!docs/unused.txt"
- mkdocs.yaml
pull_request:
paths:
- "docs/**"
- "!docs/untranslated.json"
- "!docs/unused.txt"
- mkdocs.yaml
workflow_dispatch:
jobs:
deploy:
name: GitHub Pages
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: true
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install mkdocs
pip install mkdocs-material
pip install mkdocs-git-revision-date-plugin
- name: Build
if: ${{ github.ref != 'refs/heads/master' }}
run: mkdocs build
- name: Deploy
if: ${{ github.ref == 'refs/heads/master' }}
run: mkdocs gh-deploy