File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Pages Deploy
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ workflow_dispatch :
9
+
10
+ permissions :
11
+ contents : read
12
+ pages : write
13
+ id-token : write
14
+
15
+ concurrency :
16
+ group : " pages"
17
+ cancel-in-progress : false
18
+
19
+ defaults :
20
+ run :
21
+ shell : bash
22
+
23
+
24
+ jobs :
25
+ build :
26
+ runs-on : ubuntu-latest
27
+ - name : Setup Pages
28
+ id : pages
29
+ uses : actions/configure-pages@v5
30
+ - name : Upload artifact
31
+ uses : actions/upload-pages-artifact@v4
32
+ with :
33
+ path : /
34
+ retention-days : 30
35
+ deploy :
36
+ environment :
37
+ name : github-pages
38
+ url : ${{ steps.deployment.outputs.page_url }}
39
+ runs-on : ubuntu-latest
40
+ needs : build
41
+ steps :
42
+ - name : Deploy to GitHub Pages
43
+ id : deployment
44
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments