File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -16,22 +16,19 @@ jobs:
1616 uses : actions/setup-go@v5
1717 with :
1818 go-version : ' 1.24.x'
19- - name : Print Tag
20- run : echo ${{github.ref_name}}
2119 - name : Build
2220 env :
2321 PLATFORMS : " darwin/arm64 darwin/amd64 linux/386 linux/amd64 linux/arm64 windows/amd64 windows/arm64 windows/386"
2422 VERSION : ${{github.ref_name}}
2523 run : |
2624 for PLATFORM in ${PLATFORMS}
2725 do
28- echo "Building platform ${PLATFORM}"
2926 PLATFORM_SPLIT=(${PLATFORM//\// })
3027 GOOS=${PLATFORM_SPLIT[0]}
3128 GOARCH=${PLATFORM_SPLIT[1]}
3229 OUTPUT_NAME=kekspose'-'$VERSION'-'$GOOS'-'$GOARCH
3330
34- echo "Output name will be ${OUTPUT_NAME}"
31+ echo "Building platform ${PLATFORM} as ${OUTPUT_NAME}"
3532
3633 if [ $GOOS = "windows" ]; then
3734 OUTPUT_NAME+='.exe'
You can’t perform that action at this time.
0 commit comments