-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (51 loc) · 1.43 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
48
49
50
51
52
name: Deploy GitHub Pages
on:
push:
branches:
- 2024.2 # Set a branch name to trigger deployment
jobs:
deploy:
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
context: .
submodules: true
fetch-depth: 0
- name: Set up Python
uses: actions/[email protected]
with:
context: .
python-version: 3.9
- name: Install sphinx
run: |
pip install sphinx
pip install furo
pip install sphinx-togglebutton
pip install sphinx-favicon
pip install sphinxcontrib.bibtex
- name: Build # build from docs/sphinx
run: |
cd docs/sphinx/
make clean
make html
cp source/index_replace.html build/html/index.html
cp source/lammps_replace.html build/html/non-tutorials/lammps.html
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.ref == 'refs/heads/2024.2' }}
with:
context: .
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
publish_branch: gh-pages
enable_jekyll: false
allow_empty_commit: true
keep_files: false
force_orphan: true