From e37e629630d7cfce9f86d74fa4933edf415082c8 Mon Sep 17 00:00:00 2001 From: Justin Harms Date: Sun, 10 Mar 2024 22:08:51 -0500 Subject: [PATCH] please --- .gitea/workflows/push-ci.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/push-ci.yaml b/.gitea/workflows/push-ci.yaml index 02cbfd0..7ae384a 100644 --- a/.gitea/workflows/push-ci.yaml +++ b/.gitea/workflows/push-ci.yaml @@ -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}}