We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21d3918 commit b1a5f9eCopy full SHA for b1a5f9e
1 file changed
.github/workflows/deploy-pages.yml
@@ -0,0 +1,22 @@
1
+name: Deploy to GitHub Pages
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ deploy-pages:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ pages: write
13
+ id-token: write
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
+ - name: Upload pages artifact
18
+ uses: actions/upload-pages-artifact@v3
19
+ with:
20
+ path: .
21
+ - name: Deploy pages
22
+ uses: actions/deploy-pages@v4
0 commit comments