-
-
Notifications
You must be signed in to change notification settings - Fork 6
47 lines (39 loc) · 1.09 KB
/
gh-pages.yml
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: Publish Documentation
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *" # every day at midnight
jobs:
deploy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.12]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/conda-setup
with:
python-version: ${{ matrix.python-version }}
- uses: ./.github/actions/bmad-setup
- name: List mamba
shell: bash -l {0}
run: |
mamba list
- name: Execute notebooks
shell: bash -l {0}
run: |
bash scripts/execute_notebooks.bash
- name: Build Docs
shell: bash -l {0}
run: |
mkdocs build
zip -r pytao-examples.zip docs/examples/
mv pytao-examples.zip ./site/assets/
- name: Deploy to gh-pages
if: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags') }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site/