-
Notifications
You must be signed in to change notification settings - Fork 6
42 lines (37 loc) · 953 Bytes
/
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
name: Deploy documentation
on:
push:
branches: [main]
defaults:
run:
working-directory: docs
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: "https://caiyunapp.github.io/cyeva"
permissions:
contents: read
pages: write
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- run: make html
- run: ls -alh "./build/html/"
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# https://github.com/actions/upload-pages-artifact/issues/74
path: "docs/build/html/"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4