Compare commits

..

3 Commits

Author SHA1 Message Date
s1d3sw1ped
86d4095444 Merge pull request 'cleanup' (#17) from develop into master
All checks were successful
CI / Lint (push) Successful in 48s
CI / Build (push) Successful in 3m0s
CI / Test (push) Successful in 3m20s
Reviewed-on: #17
2024-03-11 02:04:57 +00:00
s1d3sw1ped
3fd22398d3 Merge branch 'master' into develop
Some checks failed
CI / Build (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Build (pull_request) Has been cancelled
CI / Lint (pull_request) Has been cancelled
CI / Test (pull_request) Has been cancelled
2024-03-11 02:04:40 +00:00
fcb127ef05 cleanup
All checks were successful
CI / Lint (push) Successful in 55s
CI / Lint (pull_request) Successful in 59s
CI / Build (push) Successful in 5m43s
CI / Test (push) Successful in 6m21s
CI / Test (pull_request) Successful in 5m23s
CI / Build (pull_request) Successful in 5m12s
2024-03-10 20:50:04 -05:00
2 changed files with 4 additions and 4 deletions

View File

@@ -91,7 +91,7 @@ jobs:
- name: Build for linux
run: |
fyne package --appBuild=${BUILD} --exe bin/swiped-mod-switcher-${VERSION}.${BUILD}-${GOOS}-${GOARCH}${EXE} main.go
fyne package --os ${{GOOS}} --release --appVersion=${VERSION#v} --appBuild=${BUILD} --exe bin/sw1ped-mod-switcher-${VERSION#v}.${BUILD}-linux-amd64 main.go
env:
VERSION: ${{github.ref_name}}
BUILD: ${{github.run_number}}
@@ -103,7 +103,7 @@ jobs:
- name: Build for windows
run: |
fyne package --appBuild=${BUILD} --exe bin/swiped-mod-switcher-${VERSION}.${BUILD}-${GOOS}-${GOARCH}${EXE} main.go
fyne package --os ${{GOOS}} --release --appVersion=${VERSION#v} --appBuild=${BUILD} --exe bin/sw1ped-mod-switcher-${VERSION#v}.${BUILD}-windows-amd64.exe main.go
env:
VERSION: ${{github.ref_name}}
BUILD: ${{github.run_number}}

View File

@@ -87,7 +87,7 @@ jobs:
- name: Build for linux
run: |
fyne package --os linux --release --appVersion=${VERSION#v} --appBuild=${BUILD} --exe bin/sw1ped-mod-switcher-${VERSION#v}.${BUILD}-linux-amd64 main.go
fyne package --os ${{GOOS}} --release --appVersion=${VERSION#v} --appBuild=${BUILD} --exe bin/sw1ped-mod-switcher-${VERSION#v}.${BUILD}-linux-amd64 main.go
env:
VERSION: ${{github.ref_name}}
BUILD: ${{github.run_number}}
@@ -100,7 +100,7 @@ jobs:
- name: Build for windows
run: |
fyne package --os windows --release --appVersion=${VERSION#v} --appBuild=${BUILD} --exe bin/sw1ped-mod-switcher-${VERSION#v}.${BUILD}-windows-amd64.exe main.go
fyne package --os ${{GOOS}} --release --appVersion=${VERSION#v} --appBuild=${BUILD} --exe bin/sw1ped-mod-switcher-${VERSION#v}.${BUILD}-windows-amd64.exe main.go
env:
VERSION: ${{github.ref_name}}
BUILD: ${{github.run_number}}