We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a65540 commit ec3ace5Copy full SHA for ec3ace5
1 file changed
.github/workflows/docs.yml
@@ -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