Fix Github action having wrong filenames

This commit is contained in:
csd4ni3l
2026-02-24 16:28:01 +01:00
parent 6c0b5180b4
commit 56f613f531

View File

@@ -46,12 +46,12 @@ jobs:
- name: Verify executable (Linux) - name: Verify executable (Linux)
if: matrix.os == 'ubuntu-22.04' if: matrix.os == 'ubuntu-22.04'
run: test target/release/soundboard run: test target/release/csd4ni3l-browser
shell: bash shell: bash
- name: Verify executable (Windows) - name: Verify executable (Windows)
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
run: Test-Path target\release\soundboard.exe run: Test-Path target\release\csd4ni3l-browser.exe
shell: pwsh shell: pwsh
- name: Upload build artifact - name: Upload build artifact
@@ -59,8 +59,8 @@ jobs:
with: with:
name: ${{ matrix.platform }} name: ${{ matrix.platform }}
path: | path: |
target/release/soundboard target/release/csd4ni3l-browser
target/release/soundboard.exe target/release/csd4ni3l-browser.exe
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -91,5 +91,5 @@ jobs:
--notes "Automated build for $TAG" --notes "Automated build for $TAG"
fi fi
# Upload the executables directly (no zip files) # Upload the executables directly (no zip files)
gh release upload "$TAG" downloads/linux/soundboard --clobber gh release upload "$TAG" downloads/linux/csd4ni3l-browser --clobber
gh release upload "$TAG" downloads/windows/soundboard.exe --clobber gh release upload "$TAG" downloads/windows/csd4ni3l-browser.exe --clobber