From 146129c76a25d5b1c87f47430646bcb3a1c03ed2 Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Fri, 10 Nov 2023 17:37:27 +0100 Subject: 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. --- .github/workflows/release.yml | 4 ++-- 1 file 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: -- cgit v1.2.3