-
-
Notifications
You must be signed in to change notification settings - Fork 550
47 lines (39 loc) · 1.08 KB
/
dev-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
name: dev-docs
on:
push:
branches:
- main
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build River
uses: ./.github/actions/install-env
with:
python-version: "3.12"
build-root: false
- name: Install extra Ubuntu dependencies
run: sudo apt-get install graphviz pandoc
- name: Install extra Python dependencies
run: |
poetry install --with docs
- name: Build docs
run: |
source $VENV
make doc
- name: Deploy docs
env:
GH_TOKEN: ${{ secrets.GitHubToken }}
run: |
source $VENV
git config user.name github-actions
git config user.email [email protected]
git config pull.rebase false
git add --all
git commit -m "Release dev docs" --allow-empty
git fetch
git checkout gh-pages
git pull
git checkout main
mike deploy dev --push --remote https://github.com/${{ github.repository }}.git