fix
Some checks failed
CI / Test (pull_request) Has been cancelled
CI / Lint (pull_request) Has been cancelled
CI / Build (pull_request) Has been cancelled

This commit is contained in:
2024-03-11 23:56:22 -05:00
parent 5da6636dd7
commit d9a75a5e21
3 changed files with 11 additions and 11 deletions

View File

@@ -90,7 +90,7 @@ jobs:
- name: Build for linux
run: |
fyne build --os=${GOOS} --metadata Build=${BUILD} -o bin/swiped-mod-switcher-${VERSION#v}.${BUILD}-${GOOS}-${GOARCH}
fyne build --os=${{GOOS}} --metadata Build=${{BUILD}} -o bin/swiped-mod-switcher-${{VERSION#v}}.${{BUILD}}-${{GOOS}}-${{GOARCH}}
env:
VERSION: ${{github.ref_name}}
BUILD: ${{github.run_number}}
@@ -102,7 +102,7 @@ jobs:
- name: Build for windows
run: |
fyne build --os=${GOOS} --metadata Build=${BUILD} -o bin/swiped-mod-switcher-${VERSION#v}.${BUILD}-${GOOS}-${GOARCH}.exe
fyne build --os=${{GOOS}} --metadata Build=${{BUILD}} -o bin/swiped-mod-switcher-${{VERSION#v}}.${{BUILD}}-${{GOOS}}-${{GOARCH}}.exe
env:
VERSION: ${{github.ref_name}}
BUILD: ${{github.run_number}}

View File

@@ -91,11 +91,11 @@ jobs:
- name: Build for linux
run: |
fyne build --os=${GOOS} --metadata Build=${BUILD} -o bin/swiped-mod-switcher-${VERSION#v}.${BUILD}-${GOOS}-${GOARCH}
fyne build --os=${{GOOS}} --metadata Build=${{BUILD}} -o bin/swiped-mod-switcher-${{VERSION#v}}.${{BUILD}}-${{GOOS}}-${{GOARCH}}
ls bin
env:
VERSION: ${github.ref_name}
BUILD: ${github.run_number}
VERSION: ${{github.ref_name}}
BUILD: ${{github.run_number}}
GOOS: linux
GOARCH: amd64
CGO_ENABLED: 1
@@ -103,11 +103,11 @@ jobs:
- name: Build for windows
run: |
fyne build --os=${GOOS} --metadata Build=${BUILD} -o bin/swiped-mod-switcher-${VERSION#v}.${BUILD}-${GOOS}-${GOARCH}.exe
fyne build --os=${{GOOS}} --metadata Build=${{BUILD}} -o bin/swiped-mod-switcher-${{VERSION#v}}.${{BUILD}}-${{GOOS}}-${{GOARCH}}.exe
ls bin
env:
VERSION: ${github.ref_name}
BUILD: ${github.run_number}
VERSION: ${{github.ref_name}}
BUILD: ${{github.run_number}}
GOOS: windows
GOARCH: amd64
CGO_ENABLED: 1
@@ -116,5 +116,5 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: swiped-mod-switcher-${github.ref_name}
name: swiped-mod-switcher-${{github.ref_name}}
path: bin/

View File

@@ -87,7 +87,7 @@ jobs:
- name: Build for linux
run: |
fyne build --os=${GOOS} --metadata Version=${VERSION} --metadata Build=${BUILD} -o bin/swiped-mod-switcher-${VERSION#v}.${BUILD}-${GOOS}-${GOARCH}
fyne build --os=${{GOOS}} --metadata Version=${{VERSION}} --metadata Build=${{BUILD}} -o bin/swiped-mod-switcher-${{VERSION#v}}.${{BUILD}}-${{GOOS}}-${{GOARCH}}
env:
VERSION: ${{github.ref_name}}
BUILD: ${{github.run_number}}
@@ -99,7 +99,7 @@ jobs:
- name: Build for windows
run: |
fyne build --os=${GOOS} --metadata Version=${VERSION} --metadata Build=${BUILD} -o bin/swiped-mod-switcher-${VERSION#v}.${BUILD}-${GOOS}-${GOARCH}.exe
fyne build --os=${{GOOS}} --metadata Version=${{VERSION}} --metadata Build=${{BUILD}} -o bin/swiped-mod-switcher-${{VERSION#v}}.${{BUILD}}-${{GOOS}}-${{GOARCH}}.exe
env:
VERSION: ${{github.ref_name}}
BUILD: ${{github.run_number}}