From ba5376bde82df18265d442c17b0fb416eb535d42 Mon Sep 17 00:00:00 2001 From: Corey Carvalho <44616801+coreycarvalho@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:56:11 -0500 Subject: [PATCH] HOTFIX - Add code freeze conditional to production deploy in CD pipeline (#2194) --- .github/workflows/cd-pipeline.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cd-pipeline.yml b/.github/workflows/cd-pipeline.yml index 0c3969080f..9eb72b19b6 100644 --- a/.github/workflows/cd-pipeline.yml +++ b/.github/workflows/cd-pipeline.yml @@ -109,6 +109,7 @@ jobs: draftReleaseReference: ${{ needs.create-release-notes.outputs.draftReleaseReference }} deploy-to-prod: + if: vars.CODE_FREEZE == 'false' needs: [publish-release-notes, create-and-post-tag] uses: ./.github/workflows/deploy-release.yml secrets: inherit