File tree Expand file tree Collapse file tree 2 files changed +30
-8
lines changed Expand file tree Collapse file tree 2 files changed +30
-8
lines changed Original file line number Diff line number Diff line change 17
17
with :
18
18
version : 0.14.0-dev.2628+5b5c60f43
19
19
- run : zig fmt --check .
20
- docs :
21
- runs-on : ubuntu-latest
22
- steps :
23
- - uses : actions/checkout@v4
24
- - uses : mlugg/setup-zig@v1
25
- with :
26
- version : 0.14.0-dev.2628+5b5c60f43
27
- - run : zig build docs
Original file line number Diff line number Diff line change
1
+ name : Deploy static content to Pages
2
+ on :
3
+ push :
4
+ branches : ["master"]
5
+ workflow_dispatch :
6
+ permissions :
7
+ contents : read
8
+ pages : write
9
+ id-token : write
10
+ concurrency :
11
+ group : " pages"
12
+ cancel-in-progress : false
13
+ jobs :
14
+ deploy :
15
+ runs-on : ubuntu-latest
16
+ environment :
17
+ name : github-pages
18
+ url : ${{ steps.deployment.outputs.page_url }}
19
+ steps :
20
+ - uses : actions/checkout@v4
21
+ - uses : mlugg/setup-zig@v1
22
+ with :
23
+ version : 0.14.0-dev.2628+5b5c60f43
24
+ - run : zig build docs
25
+ - uses : actions/configure-pages@v5
26
+ - uses : actions/upload-pages-artifact@v3
27
+ with :
28
+ path : " ./docs/"
29
+ - uses : actions/deploy-pages@v4
30
+ id : deployment
You can’t perform that action at this time.
0 commit comments