We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 584bf2d commit 47652e0Copy full SHA for 47652e0
.github/workflows/release.yml
@@ -60,6 +60,12 @@ jobs:
60
run: task build-cli
61
if: matrix.operating-system == 'ubuntu-latest'
62
63
+ - name: Embed manifest in win binary
64
+ run: |
65
+ go get github.com/akavel/rsrc
66
+ rsrc -arch=386 -manifest=manifest.xml
67
+ if: matrix.operating-system == 'windows-latest'
68
+
69
- name: Build the Agent for win32
70
env:
71
GOARCH: 386 # 32bit architecture
Taskfile.yml
@@ -15,10 +15,7 @@ tasks:
15
build-win32:
16
desc: Build the project for win 32 bit
17
cmds:
18
- - go get github.com/akavel/rsrc
19
- - rsrc -arch=386 -manifest=manifest.xml
20
- go build -v -i {{.WIN_LDFLAGS}}
21
- - rm rsrc.syso
22
23
test:
24
desc: Run the full testsuite, `legacy` will be skipped
0 commit comments