40
40
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
41
41
echo "::set-output name=arch::${{matrix.arch}}"
42
42
echo "::set-output name=os::$(go run test/get-os.go)"
43
+ echo "::set-output name=ext::$(go run test/get-os.go extension)"
43
44
44
45
- name : Build
45
46
env :
@@ -62,11 +63,16 @@ jobs:
62
63
name : ${{steps.vars.outputs.os}}-${{matrix.arch}}
63
64
path : build/cdt_${{steps.vars.outputs.os}}_${{matrix.arch}}_${{steps.vars.outputs.sha_short}}
64
65
66
+ - name : Rename binary name for release
67
+ if : startsWith(github.ref, 'refs/tags/')
68
+ run : |
69
+ mv build/cdt_${{steps.vars.outputs.os}}_${{matrix.arch}}_${{steps.vars.outputs.sha_short}} build/cdt_${{steps.vars.outputs.os}}_${{matrix.arch}}_${{github.ref_name}}${{steps.vars.outputs.ext}}
70
+
65
71
- name : Release
66
72
uses : softprops/action-gh-release@v1
67
73
if : startsWith(github.ref, 'refs/tags/')
68
- with :
69
- files : build/cdt_${{steps.vars.outputs.os}}_${{matrix.arch}}_${{steps.vars.outputs.sha_short }}
74
+ with :
75
+ files : build/cdt_${{steps.vars.outputs.os}}_${{matrix.arch}}_${{github.ref_name}}${{ steps.vars.outputs.ext }}
70
76
71
77
packaging :
72
78
needs : [ build ]
@@ -104,14 +110,14 @@ jobs:
104
110
uses : thedoctor0/zip-release@master
105
111
with :
106
112
type : ' zip'
107
- filename : cdt_${{needs.vars.outputs.sha_short }}.zip
113
+ filename : cdt_${{github.ref_name }}.zip
108
114
directory : output
109
115
110
116
- name : Upload
111
117
uses : actions/upload-artifact@v3
112
118
with :
113
119
name : all-in-one.zip
114
- path : output/cdt_${{needs.vars.outputs.sha_short }}.zip
120
+ path : output/cdt_${{github.ref_name }}.zip
115
121
116
122
- name : Display structure of downloaded files
117
123
run : ls -R
@@ -120,7 +126,7 @@ jobs:
120
126
- name : Release
121
127
uses : softprops/action-gh-release@v1
122
128
if : startsWith(github.ref, 'refs/tags/')
123
- with :
129
+ with :
124
130
files : output/cdt_${{github.ref_name}}.zip
125
131
126
132
0 commit comments