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 6b3a63c commit 1876161Copy full SHA for 1876161
.github/workflows/ci.yaml
@@ -0,0 +1,33 @@
1
+name: Deploy to GitHub Pages
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ workflow_dispatch:
7
8
+permissions:
9
+ contents: read
10
+ pages: write
11
+ id-token: write
12
+ actions: read
13
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-24.04
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - uses: jdx/mise-action@v2
20
+ - run: mise run build
21
+ - uses: actions/upload-pages-artifact@v3
22
+ with:
23
+ path: dist
24
25
+ deploy:
26
+ needs: build
27
28
+ environment:
29
+ name: github-pages
30
+ url: ${{ steps.deployment.outputs.page_url }}
31
32
+ - id: deployment
33
+ uses: actions/deploy-pages@v4
0 commit comments