-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (44 loc) · 1.04 KB
/
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
44
45
46
name: Docs
on:
push:
branches:
- gh-pages
tags:
- "v*"
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # to get gh-pages
- uses: astral-sh/setup-uv@v3
- name: Sync
run: uv sync
- name: Push
if: github.event_name == 'push' && startsWith(github.ref_name, 'v')
run: uv run mike deploy ${{ github.ref_name }} latest --push
env:
GIT_COMMITTER_NAME: ci-bot
GIT_COMMITTER_EMAIL: [email protected]
- name: Checkout gh-pages
run: git checkout gh-pages
- uses: actions/upload-pages-artifact@v3
id: deployment
with:
path: .
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: build
permissions:
id-token: write
pages: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/deploy-pages@v4
id: deployment