-
Notifications
You must be signed in to change notification settings - Fork 11
47 lines (42 loc) · 1.03 KB
/
docs.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: docs
on:
# Run on pull requests
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
# Run on commits pushed to the main branch
push:
branches:
- main
# Run on manual workflow triggers
workflow_dispatch:
# Disallow concurrent deployments and in-progress cancellations
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false
jobs:
# Build job
build:
permissions:
contents: read
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
- name: Install Hatch
uses: pypa/hatch@install
- name: Build documentation
run: hatch run docs:build
- name: Configure GitHub Pages
uses: actions/configure-pages@v5
- name: Upload documentation
uses: actions/upload-pages-artifact@v3
with:
path: './docs/_build/html'