-
Notifications
You must be signed in to change notification settings - Fork 3
51 lines (38 loc) · 924 Bytes
/
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
name: gh-pages
on:
push:
branches:
- main
release:
types: [released]
jobs:
publish:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Basic GitHub action setup
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set conda environment
uses: mamba-org/provision-with-micromamba@main
with:
environment-file: environment.yaml
environment-name: myenv
- name: Configure using CMake
run: cmake -Bbuild -DBUILD_DOCS=1
- name: Build the docs
working-directory: build
run: make html
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: build/html
jekyll: false
keep_history: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}