forked from ufs-community/CATChem
-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (30 loc) · 814 Bytes
/
docs.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
name: Doxygen docs
on:
push:
branches: [feature/catchem_begins]
pull_request:
branches: [feature/catchem_begins]
permissions:
contents: write
jobs:
doxygen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y doxygen graphviz
- name: Build
run: |
cd docs2
doxygen
cd -
- name: Deploy
if: github.ref == 'refs/heads/feature/catchem_begins'
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs2/html
git-config-name: github-actions
git-config-email: 41898282+github-actions[bot]@users.noreply.github.com
clean: true
clean-exclude: .nojekyll