Skip to content

Commit ec3ace5

Browse files
committed
ci(docs): add GitHub Pages deploy workflow for mkdocs
1 parent 3a65540 commit ec3ace5

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/docs.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Deploy Docs
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths:
7+
- "docs/**"
8+
- "mkdocs.yml"
9+
- ".github/workflows/docs.yml"
10+
workflow_dispatch:
11+
12+
concurrency:
13+
group: docs-deploy
14+
cancel-in-progress: true
15+
16+
permissions:
17+
contents: write
18+
19+
jobs:
20+
deploy:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v4
24+
with:
25+
fetch-depth: 0
26+
- uses: extractions/setup-just@v2
27+
- uses: astral-sh/setup-uv@v3
28+
- run: just docs-deploy

0 commit comments

Comments
 (0)