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 9c38905 commit ef2edcaCopy full SHA for ef2edca
.github/workflows/pages
@@ -1 +1,31 @@
1
+name: pages
2
+on:
3
+ push:
4
+ branches: ["main"]
5
+ workflow_dispatch:
6
+
7
+permissions:
8
+ contents: read
9
+ pages: write
10
+ id-token: write
11
12
+concurrency:
13
+ group: "pages"
14
+ cancel-in-progress: true
15
16
+jobs:
17
+ deploy:
18
+ environment:
19
+ name: github-pages
20
+ url: ${{ steps.deployment.outputs.page_url }}
21
+ runs-on: ubuntu-latest
22
+ steps:
23
+ - uses: actions/checkout@v4
24
+ - name: Upload artifact
25
+ uses: actions/upload-pages-artifact@v3
26
+ with:
27
+ path: ./web
28
+ - name: Deploy to GitHub Pages
29
+ id: deployment
30
+ uses: actions/deploy-pages@v4
31
0 commit comments