From 710e2e5a2d9d107215f06ba3c43f54985a0a2b17 Mon Sep 17 00:00:00 2001 From: Fernando Date: Thu, 5 Mar 2026 21:29:33 -0400 Subject: [PATCH] Fix sentry-cli path on Windows Git Bash The curl installer places sentry-cli in /usr/local/bin which is not in Git Bash's PATH on Windows runners. Use the full path instead. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fc63c91..1069148 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -243,7 +243,7 @@ jobs: cp "${{github.workspace}}/bin/QtMeshEditor.exe" "${{github.workspace}}/bin/QtMeshEditor.debug.exe" "D:/a/QtMeshEditor/Qt/Tools/mingw1310_64/bin/strip.exe" --strip-debug "${{github.workspace}}/bin/QtMeshEditor.exe" curl -sL https://sentry.io/get-cli/ | bash - sentry-cli debug-files upload --include-sources "${{github.workspace}}/bin/QtMeshEditor.debug.exe" + /usr/local/bin/sentry-cli debug-files upload --include-sources "${{github.workspace}}/bin/QtMeshEditor.debug.exe" rm -f "${{github.workspace}}/bin/QtMeshEditor.debug.exe" shell: bash