-
-
Notifications
You must be signed in to change notification settings - Fork 551
59 lines (50 loc) · 1.61 KB
/
release-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
51
52
53
54
55
56
57
58
59
name: release-docs
on:
workflow_dispatch:
push:
tags:
- "*"
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build River
uses: ./.github/actions/install-env
with:
# Use 3.12 for the docs env waiting for spaCy and srsly to support 3.13
python-version: "3.12"
- name: Install extra Ubuntu dependencies
run: sudo apt-get install graphviz pandoc
- name: Install extra Python dependencies
run: |
poetry install --with docs --with compat
poetry run python -m spacy download en_core_web_sm
- name: Use Rich in notebooks
run: |
poetry run ipython profile create
echo "%load_ext rich" > ~/.ipython/profile_default/startup/00_rich.ipy
- name: Execute notebooks
run: |
source $VENV
make execute-notebooks
- 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 "Execute notebooks"
git fetch
git checkout gh-pages
git pull
git checkout main
RIVER_VERSION=$(python -c "import river; print(river.__version__)")
mike deploy ${RIVER_VERSION} latest --update-aliases --push --remote https://${GH_TOKEN}@github.com/online-ml/river.git