-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 903 Bytes
/
release.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
name: release
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install -U sphinx
pip install furo
pip install --upgrade myst-parser
pip install sphinxcontrib-mermaid
pip install sphinx-copybutton
pip install sphinx-inline-tabs
pip install sphinx_last_updated_by_git
pip install sphinx_design
pip install sphinx-comments
- name: Build
run: |
make html
- name: GitHub Pages action
uses: peaceiris/[email protected]
with:
github_token: ${{secrets.GITHUB_TOKEN}}
publish_dir: build/html