-
Notifications
You must be signed in to change notification settings - Fork 6
43 lines (37 loc) · 1.17 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
name: build-docs
# Only run this when the master branch changes
on:
pull_request:
push:
branches:
- master
# This job installs dependencies, build the book, and pushes it to `gh-pages`
jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Install dependencies
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
python3 -m pip install cibuildwheel
export SETUPTOOLS_SCM_PRETEND_VERSION='3.0.1'
export CIBW_ENVIRONMENT_PASS_LINUX='SETUPTOOLS_SCM_PRETEND_VERSION'
export CIBW_TEST_COMMAND='true'
CIBW_BUILD='cp39-manylinux_x86_64' python3 -m cibuildwheel --platform linux
python3 -m pip install wheelhouse/*.whl
# Build the site
- name: Build the site
run: |
bash scripts/generate_docs.sh
# If we've pushed to master, push the book's HTML to github-pages
- if: ${{ github.ref == 'refs/heads/master' }}
name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs