We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 562f6f7 commit 43b7264Copy full SHA for 43b7264
1 file changed
.github/workflows/deploy-getgit-page.yml
@@ -0,0 +1,33 @@
1
+name: Deploy GetGit 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
+jobs:
14
+ deploy:
15
+ environment:
16
+ name: github-pages
17
+ url: ${{ steps.deployment.outputs.page_url }}
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
23
+ - name: Setup Pages
24
+ uses: actions/configure-pages@v4
25
26
+ - name: Upload artifact
27
+ uses: actions/upload-pages-artifact@v3
28
+ with:
29
+ path: '.'
30
31
+ - name: Deploy to GitHub Pages
32
+ id: deployment
33
+ uses: actions/deploy-pages@v4
0 commit comments