You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/publish-go-tester-task.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ jobs:
116
116
# the manifest is required by windows GUI apps, otherwise the binary will crash with: "Unable to create main window: TTM_ADDTOOL failed" (for reference https://github.com/lxn/walk/issues/28)
117
117
# rsrc will produce a *.syso file that should get automatically recognized by go build command and linked into an executable.
118
118
- name: Download tool to embed manifest in win binary
119
-
run: go get github.com/akavel/rsrc
119
+
run: go install github.com/akavel/rsrc@latest
120
120
if: runner.os == 'Windows'
121
121
122
122
# building the agent for win requires a different task because of an extra flag
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -74,11 +74,7 @@ jobs:
74
74
if: matrix.os == 'ubuntu-20.04'
75
75
76
76
- name: Install Go deps
77
-
# Since 10/23/2019 pwsh is the default shell
78
-
# on Windows, but pwsh fails to install protoc-gen-go so
79
-
# we force bash as default shell for all OSes in this task
80
-
run: |
81
-
go get -u github.com/sanbornm/go-selfupdate/...
77
+
run: go install github.com/sanbornm/go-selfupdate/...@latest
82
78
83
79
- name: Install Taskfile
84
80
uses: arduino/setup-task@v1
@@ -98,7 +94,7 @@ jobs:
98
94
# the manifest is required by windows GUI apps, otherwise the binary will crash with: "Unable to create main window: TTM_ADDTOOL failed" (for reference https://github.com/lxn/walk/issues/28)
99
95
# rsrc will produce a *.syso file that should get automatically recognized by go build command and linked into an executable.
100
96
- name: Download tool to embed manifest in win binary
101
-
run: go get github.com/akavel/rsrc
97
+
run: go install github.com/akavel/rsrc@latest
102
98
if: matrix.os == 'windows-2019'
103
99
104
100
# building the agent for win requires a different task because of an extra flag
0 commit comments