-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (45 loc) · 1.21 KB
/
Copy pathdocs.yml
File metadata and controls
54 lines (45 loc) · 1.21 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
name: Docs
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
docs:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install package with docs extras
run: |
python -m pip install --upgrade pip
pip install -e ".[docs]"
- name: Build docs
run: |
cd docs
make html
- name: Upload docs artifact (PRs)
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v7
with:
name: pr_docs
path: ./docs/_build/html
- name: Deploy to GitHub Pages
if: github.event_name != 'pull_request' && github.repository == 'Becksteinlab/ConfoState'
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
user_name: github-actions
user_email: github-actions[bot]@users.noreply.github.com