From b56cf5c252c87399429aa607238ac69867c62385 Mon Sep 17 00:00:00 2001 From: Salman Chishti Date: Wed, 18 Mar 2026 15:57:15 +0000 Subject: [PATCH] Disable deployment record for release workflow Set deployment: false on the publish environment so the release job accesses environment protection rules and secrets without creating a deployment record. --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ac2bc59..fd49b3a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,7 +50,9 @@ jobs: return true; release: - environment: publish + environment: + name: publish + deployment: false needs: check-version-change if: ${{ needs.check-version-change.outputs.changed == 'true' }}