We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9f76336 + 0e653e2 commit e60fd49Copy full SHA for e60fd49
1 file changed
.github/workflows/deploy-website
@@ -0,0 +1,26 @@
1
+# .github/workflows/deploy-website.yml
2
+name: Deploy Website
3
+on:
4
+ push:
5
+ branches: [main]
6
+ paths: [website/**]
7
+
8
+permissions:
9
+ contents: read
10
+ pages: write
11
+ id-token: write
12
13
+jobs:
14
+ deploy:
15
+ runs-on: ubuntu-latest
16
+ environment:
17
+ name: github-pages
18
+ url: ${{ steps.deployment.outputs.page_url }}
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - uses: actions/configure-pages@v4
22
+ - uses: actions/upload-pages-artifact@v3
23
+ with:
24
+ path: website
25
+ - id: deployment
26
+ uses: actions/deploy-pages@v4
0 commit comments