We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44cfdc4 commit 9720a93Copy full SHA for 9720a93
1 file changed
.github/workflows/pages.yml
@@ -0,0 +1,38 @@
1
+name: Deploy website to 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
+concurrency:
14
+ group: pages
15
+ cancel-in-progress: true
16
17
+jobs:
18
+ deploy:
19
+ environment:
20
+ name: github-pages
21
+ url: ${{ steps.deployment.outputs.page_url }}
22
+ runs-on: ubuntu-latest
23
24
+ steps:
25
+ - name: Checkout
26
+ uses: actions/checkout@v4
27
28
+ - name: Setup Pages
29
+ uses: actions/configure-pages@v5
30
31
+ - name: Upload site artifact
32
+ uses: actions/upload-pages-artifact@v3
33
+ with:
34
+ path: website
35
36
+ - name: Deploy to GitHub Pages
37
+ id: deployment
38
+ uses: actions/deploy-pages@v4
0 commit comments