Skip to content

Commit 37e95ea

Browse files
committed
gha: auto deploy docs
1 parent f6666c6 commit 37e95ea

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/docs.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)