We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0b3a2c commit 7b7d5c2Copy full SHA for 7b7d5c2
1 file changed
.github/workflows/deploy.yml
@@ -0,0 +1,30 @@
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
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout your repository using git
18
+ uses: actions/checkout@v4
19
+ - name: Install, build, and upload your site
20
+ uses: withastro/action@v2
21
+ deploy:
22
+ needs: build
23
24
+ environment:
25
+ name: github-pages
26
+ url: ${{ steps.deployment.outputs.page_url }}
27
28
+ - name: Deploy to GitHub Pages
29
+ id: deployment
30
+ uses: actions/deploy-pages@v4
0 commit comments