-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (38 loc) · 1.02 KB
/
docs-dev.yaml
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: Documentation (unstable)
on:
workflow_call:
workflow_dispatch: # to trigger manually
push:
branches:
- main
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Set environment variable
run: |
echo $(poetry run poetry env info --path)/bin >> $GITHUB_PATH
- name: Install packages
run: |
make config-poetry
make install-all
- name: Setup doc deploy
env:
CI_BOT_EMAIL: ${{secrets.CI_BOT_EMAIL}}
run: |
git config --global user.name ci-docs-bot
git config --global user.email $CI_BOT_EMAIL
git fetch origin gh-pages --depth=1 --tags
- name: Build and deploy documentation
run: |
make publish-doc-dev