-
Notifications
You must be signed in to change notification settings - Fork 268
50 lines (44 loc) · 1.25 KB
/
build_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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: build-deploy-site
on:
push:
branches:
- main
pull_request:
branches:
- main
# This job installs dependencies, build the website, and pushes it to `gh-pages`
jobs:
deploy-website:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
# Create environment using micromamba
- name: Install Conda environment with Micromamba
uses: mamba-org/[email protected]
with:
environment-file: doc/environment.yml
micromamba-version: '2.0.0-0'
environment-name: pyart-docs
cache-downloads: false
- name: Fetch all history for all tags and branches
run: |
git fetch --prune --unshallow
- name: Install PyART
run: |
pip install -e .
# Build the website
- name: Build the site
run: |
cd doc
make html
# Push the book's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/[email protected]
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: doc/build/html
cname: https:/arm-doe.github.io/pyart/