From f4ab4a1989a17260a77eb79550c07c29f98957be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Falc=C3=B3n?= Date: Sat, 9 May 2026 16:51:51 +0100 Subject: [PATCH] Fix Sentry release commit detection in image build (#371) ## Summary - add --ignore-missing to Sentry set-commits so build-image does not fail when previous release SHA is unavailable - cover the workflow command in Sentry config test ## Tests - vendor/bin/pint --dirty --format agent - php artisan test --compact tests/Feature/SentryConfigTest.php --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9a6cb21..fd896eb0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -367,7 +367,7 @@ jobs: sentry-cli releases new "$SENTRY_RELEASE" fi - sentry-cli releases set-commits "$SENTRY_RELEASE" --auto + sentry-cli releases set-commits "$SENTRY_RELEASE" --auto --ignore-missing sentry-cli releases finalize "$SENTRY_RELEASE" - name: Set up QEMU