From 38f51d2a29894955e7e1325b3442bbdfbcba22e9 Mon Sep 17 00:00:00 2001 From: Logan Jones Date: Mon, 14 Apr 2025 19:59:38 -0500 Subject: [PATCH] fixed input and output binary files --- .github/workflows/wails.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wails.yml b/.github/workflows/wails.yml index 34d6063..a7d3983 100644 --- a/.github/workflows/wails.yml +++ b/.github/workflows/wails.yml @@ -24,14 +24,17 @@ jobs: platform: 'linux/amd64' os: 'ubuntu-latest' bin-name: 'yellowjacket' + artifact-name: 'yellowjacket' - name: 'yellowjacket' platform: 'windows/amd64' os: 'windows-latest' - bin-name: 'yellowjacket.exe' + bin-name: 'yellowjacket' + artifact-name: 'yellowjacket.exe' - name: 'yellowjacket' platform: 'darwin/universal' os: 'macos-latest' bin-name: 'yellowjacket.app' + artifact-name: 'yellowjacket.app' runs-on: ${{ matrix.build.os }} steps: @@ -63,8 +66,8 @@ jobs: - name: Upload Binaries uses: actions/upload-artifact@v4 with: - name: ${{ matrix.build.bin-name }} - path: ${{ github.workspace }}/build/bin/* + name: ${{ matrix.build.artifact-name }} + path: ${{ github.workspace }}/build/bin/${{ matrix.build.bin-name }} release: runs-on: ubuntu-latest