please
Some checks failed
CI / Lint (push) Successful in 49s
CI / Build (push) Failing after 3m2s
CI / Test (push) Successful in 3m32s

This commit is contained in:
2024-03-10 22:08:51 -05:00
parent e1db654a48
commit e37e629630

View File

@@ -91,8 +91,11 @@ jobs:
- name: Build
run: |
GOOS=linux GOARCH=amd64 CC=gcc fyne package --appBuild=${BUILD} --exe bin/swiped-mod-switcher-${VERSION#v}.${BUILD}-windows-amd64 main.go
GOOS=windows GOARCH=amd64 CC=x86_64-w64-mingw32-gcc fyne package --appBuild=${BUILD} --exe bin/swiped-mod-switcher-${VERSION#v}.${BUILD}-windows-amd64.exe main.go
mkdir bin/
GOOS=linux GOARCH=amd64 CC=gcc fyne package --appBuild=${BUILD} --exe bin2/swiped-mod-switcher-${VERSION#v}.${BUILD}-linux-amd64 main.go
mv bin2/* bin/
GOOS=windows GOARCH=amd64 CC=x86_64-w64-mingw32-gcc fyne package --appBuild=${BUILD} --exe bin2/swiped-mod-switcher-${VERSION#v}.${BUILD}-windows-amd64.exe main.go
mv bin2/* bin/
env:
VERSION: ${{github.ref_name}}
BUILD: ${{github.run_number}}