mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-15 13:07:33 +00:00
fix mac os sentry cli upload dsym error bug
This commit is contained in:
6
.github/workflows/sentry_cli.yml
vendored
6
.github/workflows/sentry_cli.yml
vendored
@@ -149,7 +149,11 @@ jobs:
|
|||||||
done
|
done
|
||||||
echo ""
|
echo ""
|
||||||
echo "Starting Sentry upload with debug logging..."
|
echo "Starting Sentry upload with debug logging..."
|
||||||
sentry-cli --log-level=debug --auth-token "$SENTRY_AUTH_TOKEN" upload-dif --org "${{ secrets.SENTRY_ORG }}" --project "${{ secrets.SENTRY_PROJECT }}" --release "${{ inputs.release }}" ./symbols
|
# upload-dif does not support --release flag, it auto-associates with releases
|
||||||
|
sentry-cli --log-level=debug --auth-token "$SENTRY_AUTH_TOKEN" upload-dif \
|
||||||
|
--org "${{ secrets.SENTRY_ORG }}" \
|
||||||
|
--project "${{ secrets.SENTRY_PROJECT }}" \
|
||||||
|
./symbols
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
echo "::error::Sentry upload failed with exit code $?"
|
echo "::error::Sentry upload failed with exit code $?"
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
Reference in New Issue
Block a user