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 ae23216 commit debcdbeCopy full SHA for debcdbe
.github/workflows/deploy.yml
@@ -0,0 +1,34 @@
1
+name: Deploy to GitHub Pages
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ workflow_dispatch:
8
9
+permissions:
10
+ contents: read
11
+ pages: write
12
+ id-token: write
13
14
+jobs:
15
+ deploy:
16
+ environment:
17
+ name: github-pages
18
+ url: ${{ steps.deploy-pages.outputs.page_url }}
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - name: Checkout
22
+ uses: actions/checkout@v4
23
24
+ - name: Setup Pages
25
+ uses: actions/configure-pages@v4
26
27
+ - name: Upload artifact
28
+ uses: actions/upload-pages-artifact@v3
29
+ with:
30
+ path: ./
31
32
+ - name: Deploy to GitHub Pages
33
+ id: deploy-pages
34
+ uses: actions/deploy-pages@v4
0 commit comments