-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (34 loc) · 917 Bytes
/
deploy-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
name: Deploy docs
on:
push:
# tags: ['[0-9]+.[0-9]+.*']
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- uses: actions/cache@v2
name: Set up caches
with:
path: ~/.cache/pip
key: ${{ runner.os }}
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 3
- name: Fetch tags
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Install dependencies
run: |
pip install -U pip setuptools wheel
pip install -r requirements-dev.txt
- name: Build docs
run: bash meta/documentation.sh
- name: Deploy docs
env:
GH_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
run: bash .github/deploy-gh-pages.sh