Skip to content

Commit 8bf22ef

Browse files
committed
fix the binary file path
1 parent 0063226 commit 8bf22ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
GITHUB_TOKEN: ${{ secrets.GH_PUBLISH_SECRETS }}
5959
run: |
6060
go build -ldflags '-X github.com/linuxsuren/cobra-extension/version.version=${{ github.ref_name }} -X github.com/linuxsuren/cobra-extension/version.commit=${{ github.sha }}' -o bin/goplay.exe .
61-
cd bin && 7z d goplay-windows-amd64.zip goplay.exe
61+
7z d goplay-windows-amd64.zip bin/goplay.exe
6262
gh release upload ${{ github.ref_name }} goplay-windows-amd64.zip
6363
6464
msi:

wix.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"files": {
77
"guid": "0af2253c-4f7a-469a-ab00-8f87dc3ae4de",
88
"items": [
9-
"goplay.exe"
9+
"bin/goplay.exe"
1010
]
1111
},
1212
"env": {

0 commit comments

Comments
 (0)