We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6666c6 commit 37e95eaCopy full SHA for 37e95ea
.github/workflows/docs.yaml
@@ -0,0 +1,23 @@
1
+name: Deploy Documentation
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+permissions:
7
+ contents: write
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout Repository
13
+ uses: actions/checkout@v4
14
+ - name: Configure Git Credentials
15
+ run: |
16
+ git config user.name github-actions[bot]
17
+ git config user.email 41898282+github-actions[bot]@users.noreply.github.com
18
+ - name: Install uv
19
+ uses: astral-sh/setup-uv@v5
20
+ - name: Install Task
21
+ uses: arduino/setup-task@v2
22
+ - name: Deploy Documentation
23
+ run: task deploy-docs
0 commit comments