Skip to content

Commit 2de4d42

Browse files
committed
💚 Fix windows executables does not have extension
1 parent dfad443 commit 2de4d42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: GOOS=linux GOARCH=amd64 go build -v -ldflags="-s -w" -o opt/munager_linux_amd64 .
2424

2525
- name: Build for windows/amd64
26-
run: GOOS=windows GOARCH=amd64 go build -v -ldflags="-s -w" -o opt/munager_windows_amd64 .
26+
run: GOOS=windows GOARCH=amd64 go build -v -ldflags="-s -w" -o opt/munager_windows_amd64.exe .
2727

2828
- name: Build for android/arm64
2929
run: GOOS=android GOARCH=arm64 go build -v -ldflags="-s -w" -o opt/munager_android_arm64 .

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: GOOS=linux GOARCH=amd64 go build -v -ldflags="-s -w" -o opt/munager_linux_amd64 .
2626

2727
- name: Build for windows/amd64
28-
run: GOOS=windows GOARCH=amd64 go build -v -ldflags="-s -w" -o opt/munager_windows_amd64 .
28+
run: GOOS=windows GOARCH=amd64 go build -v -ldflags="-s -w" -o opt/munager_windows_amd64.exe .
2929

3030
- name: Build for android/arm64
3131
run: GOOS=android GOARCH=arm64 go build -v -ldflags="-s -w" -o opt/munager_android_arm64 .

0 commit comments

Comments
 (0)