Skip to content

Commit dc6f3b6

Browse files
committed
Use git ref name in release
1 parent 42a3f03 commit dc6f3b6

File tree

2 files changed

+25
-6
lines changed

2 files changed

+25
-6
lines changed

.github/workflows/go.yml

+11-5
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
4141
echo "::set-output name=arch::${{matrix.arch}}"
4242
echo "::set-output name=os::$(go run test/get-os.go)"
43+
echo "::set-output name=ext::$(go run test/get-os.go extension)"
4344
4445
- name: Build
4546
env:
@@ -62,11 +63,16 @@ jobs:
6263
name: ${{steps.vars.outputs.os}}-${{matrix.arch}}
6364
path: build/cdt_${{steps.vars.outputs.os}}_${{matrix.arch}}_${{steps.vars.outputs.sha_short}}
6465

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+
6571
- name: Release
6672
uses: softprops/action-gh-release@v1
6773
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}}
7076

7177
packaging:
7278
needs: [ build ]
@@ -104,14 +110,14 @@ jobs:
104110
uses: thedoctor0/zip-release@master
105111
with:
106112
type: 'zip'
107-
filename: cdt_${{needs.vars.outputs.sha_short}}.zip
113+
filename: cdt_${{github.ref_name}}.zip
108114
directory: output
109115

110116
- name: Upload
111117
uses: actions/upload-artifact@v3
112118
with:
113119
name: all-in-one.zip
114-
path: output/cdt_${{needs.vars.outputs.sha_short}}.zip
120+
path: output/cdt_${{github.ref_name}}.zip
115121

116122
- name: Display structure of downloaded files
117123
run: ls -R
@@ -120,7 +126,7 @@ jobs:
120126
- name: Release
121127
uses: softprops/action-gh-release@v1
122128
if: startsWith(github.ref, 'refs/tags/')
123-
with:
129+
with:
124130
files: output/cdt_${{github.ref_name}}.zip
125131

126132

test/get-os.go

+14-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,22 @@ package main
22

33
import (
44
"fmt"
5+
"os"
56
"runtime"
67
)
78

89
func main() {
9-
fmt.Println(runtime.GOOS)
10+
args := os.Args[1:]
11+
if len(args) == 0 {
12+
fmt.Println(runtime.GOOS)
13+
os.Exit(0)
14+
}
15+
16+
if args[0] == "extension" {
17+
if runtime.GOOS == "windows" {
18+
fmt.Println(".exe")
19+
} else {
20+
fmt.Println("")
21+
}
22+
}
1023
}

0 commit comments

Comments
 (0)