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 af00b83 commit 6397a83Copy full SHA for 6397a83
1 file changed
.github/workflows/github-pages.yaml
@@ -0,0 +1,41 @@
1
+name: 'Gitub Pages'
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'main'
7
+ - 'hyperupcall-ci'
8
+ pull_request:
9
+ workflow_dispatch:
10
11
+permissions:
12
+ contents: read
13
+ pages: write
14
+ id-token: write
15
16
+concurrency:
17
+ group: "pages"
18
+ cancel-in-progress: false
19
20
+jobs:
21
+ upload:
22
+ name: 'Upload'
23
+ runs-on: 'ubuntu-24.04'
24
+ steps:
25
+ - uses: 'actions/checkout@v4'
26
+ - uses: "actions/upload-pages-artifact@v3"
27
+ with:
28
+ path: '.'
29
30
+ deploy:
31
+ name: "Deploy"
32
+ runs-on: "ubuntu-24.04"
33
+ needs: ["upload"]
34
+ if: ${{ github.ref == 'refs/heads/main' }}
35
+ environment:
36
+ name: "github-pages"
37
+ url: "${{ steps.deployment.outputs.page_url }}"
38
39
+ - name: "Deploy to GitHub Pages"
40
+ id: "deployment"
41
+ uses: "actions/deploy-pages@v4"
0 commit comments