-
Notifications
You must be signed in to change notification settings - Fork 1
85 lines (78 loc) · 1.81 KB
/
Copy pathdocs.yml
File metadata and controls
85 lines (78 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: "Documentation"
on:
push:
branches:
- develop
paths:
- 'docs/**'
- 'mkdocs.yaml'
- '.github/workflows/docs.yml'
pull_request:
branches:
- develop
types:
- opened
- synchronize
paths:
- 'docs/**'
- 'mkdocs.yaml'
- '.github/workflows/docs.yml'
# schedule:
# - cron: '37 23 * * 2'
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
changes:
runs-on: ubuntu-latest
timeout-minutes: 1
defaults:
run:
shell: bash
outputs:
docs: ${{ steps.changed_files.outputs.docs }}
steps:
- name: Checkout code
uses: actions/checkout@v6
- id: changed_files
name: Check for file changes
uses: dorny/paths-filter@v4
with:
base: ${{ github.ref }}
token: ${{ github.token }}
filters: .github/file-filters.yml
generate:
name: Generate
if: needs.changes.outputs.docs == 'true'
needs: changes
runs-on: ubuntu-latest
env:
PYTHONPATH: src/
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v7
with:
python-version: '3.14'
- run: pip install tox
- name: Check Python Package structure
run: tox -e docs -- -d docs-output
- name: Upload artifact
uses: actions/upload-pages-artifact@v5
with:
path: ./docs-output
# Deployment job
deploy:
needs: generate
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
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@v6