fixed input and output binary files

This commit is contained in:
2025-04-14 19:59:38 -05:00
parent 72cc5ccf22
commit 38f51d2a29
+6 -3
View File
@@ -24,14 +24,17 @@ jobs:
platform: 'linux/amd64' platform: 'linux/amd64'
os: 'ubuntu-latest' os: 'ubuntu-latest'
bin-name: 'yellowjacket' bin-name: 'yellowjacket'
artifact-name: 'yellowjacket'
- name: 'yellowjacket' - name: 'yellowjacket'
platform: 'windows/amd64' platform: 'windows/amd64'
os: 'windows-latest' os: 'windows-latest'
bin-name: 'yellowjacket.exe' bin-name: 'yellowjacket'
artifact-name: 'yellowjacket.exe'
- name: 'yellowjacket' - name: 'yellowjacket'
platform: 'darwin/universal' platform: 'darwin/universal'
os: 'macos-latest' os: 'macos-latest'
bin-name: 'yellowjacket.app' bin-name: 'yellowjacket.app'
artifact-name: 'yellowjacket.app'
runs-on: ${{ matrix.build.os }} runs-on: ${{ matrix.build.os }}
steps: steps:
@@ -63,8 +66,8 @@ jobs:
- name: Upload Binaries - name: Upload Binaries
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: ${{ matrix.build.bin-name }} name: ${{ matrix.build.artifact-name }}
path: ${{ github.workspace }}/build/bin/* path: ${{ github.workspace }}/build/bin/${{ matrix.build.bin-name }}
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest