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
# 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)
94
94
# rsrc will produce a *.syso file that should get automatically recognized by go build command and linked into an executable.
@@ -390,7 +390,7 @@ jobs:
390
390
# This job is responsible for generating the installers (using installbuilder)
391
391
package:
392
392
needs: build
393
-
runs-on: ubuntu-20.04
393
+
runs-on: ubuntu-22.04
394
394
395
395
env:
396
396
# vars used by installbuilder
@@ -400,10 +400,10 @@ jobs:
400
400
strategy:
401
401
fail-fast: false # if one os is failing continue nonetheless
402
402
matrix: # used to generate installers for different OS and not for runs-on
403
-
os: [ubuntu-20.04, windows-2019]
403
+
os: [ubuntu-22.04, windows-2019]
404
404
arch: [amd64]
405
405
include:
406
-
- os: ubuntu-20.04
406
+
- os: ubuntu-22.04
407
407
platform-name: linux
408
408
installbuilder-name: linux-x64
409
409
installer-extension: .run
@@ -438,7 +438,7 @@ jobs:
438
438
# zip artifacts do not mantain executable permission
0 commit comments