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 d88a687 commit 5070804Copy full SHA for 5070804
1 file changed
.github/workflows/static.yml
@@ -0,0 +1,27 @@
1
+# Simple workflow for deploying static content to GitHub Pages
2
+name: Deploy static content to Pages
3
+
4
+on:
5
+ # Runs on pushes targeting the default branch
6
+ push:
7
+ branches: ["main"]
8
9
+ # Allows you to run this workflow manually from the Actions tab
10
+ workflow_dispatch:
11
12
+# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13
+permissions:
14
+ contents: read
15
+ pages: write
16
+ id-token: write
17
18
+jobs:
19
+ deploy:
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+ - uses: actions/configure-pages@v3
24
+ - uses: actions/upload-pages-artifact@v2
25
+ with:
26
+ path: "." # index.html is in root
27
+ - uses: actions/deploy-pages@v2
0 commit comments