Skip to content

Commit 06f3f4d

Browse files
committed
chore(workflow): add docs workflow
1 parent 12d97e4 commit 06f3f4d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/docs.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Deploy Docs
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
docs:
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: oven-sh/setup-bun@v1
16+
- run: bun install
17+
- run: bun run docs
18+
- uses: actions/upload-pages-artifact@v3
19+
with:
20+
path: ./docs
21+
- id: deployment
22+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)