From d9a75a5e21b775ef4f8e0e7bbe6fc9ba63bb4317 Mon Sep 17 00:00:00 2001 From: Justin Harms Date: Mon, 11 Mar 2024 23:56:22 -0500 Subject: [PATCH] fix --- .gitea/workflows/pull-request-ci.yaml | 4 ++-- .gitea/workflows/push-ci.yaml | 14 +++++++------- .gitea/workflows/tag-release.yaml | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/pull-request-ci.yaml b/.gitea/workflows/pull-request-ci.yaml index 8fe8959..e8bada9 100644 --- a/.gitea/workflows/pull-request-ci.yaml +++ b/.gitea/workflows/pull-request-ci.yaml @@ -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}} diff --git a/.gitea/workflows/push-ci.yaml b/.gitea/workflows/push-ci.yaml index 89061e7..5c3dba1 100644 --- a/.gitea/workflows/push-ci.yaml +++ b/.gitea/workflows/push-ci.yaml @@ -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/ \ No newline at end of file diff --git a/.gitea/workflows/tag-release.yaml b/.gitea/workflows/tag-release.yaml index 2b10fc3..9a4725b 100644 --- a/.gitea/workflows/tag-release.yaml +++ b/.gitea/workflows/tag-release.yaml @@ -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}}