File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Manual Release
2
+
3
+ on :
4
+ workflow_dispatch :
5
+
6
+
7
+ jobs :
8
+ build-release :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Checkout code
12
+ uses : actions/checkout@v4
13
+ with :
14
+ fetch-depth : 0
15
+
16
+ - name : Setup Go
17
+ uses : actions/setup-go@v5
18
+ with :
19
+ go-version : stable
20
+
21
+ - name : Precompile GH Extension
22
+ uses : cli/gh-extension-precompile@v2
23
+ with :
24
+ go-version : stable
25
+ binary-name : gh-subrepo
26
+
27
+ - name : Upload binaries to GitHub Release
28
+ uses : softprops/action-gh-release@v2
29
+ with :
30
+ tag_name : ${{ needs.create-release.outputs.tag_name }}
31
+ files : dist/*
Original file line number Diff line number Diff line change 8
8
permissions :
9
9
contents : write
10
10
pull-requests : write
11
+ id-token : write
11
12
12
13
jobs :
13
14
create-release :
You can’t perform that action at this time.
0 commit comments