diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-11-10 17:37:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 17:37:27 +0100 |
commit | 146129c76a25d5b1c87f47430646bcb3a1c03ed2 (patch) | |
tree | 6e5cda29954801dd3f380c62023ffb3439743df0 | |
parent | 7c256bea615f31f2a7d03248fa1d48decdeefffd (diff) | |
download | FlightCore-146129c76a25d5b1c87f47430646bcb3a1c03ed2.tar.gz FlightCore-146129c76a25d5b1c87f47430646bcb3a1c03ed2.zip |
build: Fix pdb not uploading to sentry (#672)
The filename was changed in #620 but the CI config was never updated
accordingly.
As such it still tried to upload the old filename and would silent fail.
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8b2235e5..80c33a6a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,7 +64,7 @@ jobs: path: | src-tauri/target/release/bundle/appimage/*AppImage* src-tauri/target/release/bundle/msi/*msi* - src-tauri/target/release/app.pdb + src-tauri/target/release/flightcore.pdb - name: Install sentry-cli (Windows only) if: matrix.platform == 'windows-latest' run: | @@ -76,7 +76,7 @@ jobs: SENTRY_ORG: northstar-kv SENTRY_PROJECT: flightcore run: | - ./sentry-cli.exe upload-dif --wait src-tauri/target/release/app.pdb + ./sentry-cli.exe upload-dif --wait src-tauri/target/release/flightcore.pdb - name: Release uses: softprops/action-gh-release@v1 with: |