From b30f2eb523bcd9e05aa3d14fa27b4abb69da1ce6 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Mon, 5 Jan 2026 15:42:35 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20=C3=A9tendre=20la=20condition=20de=20d?= =?UTF-8?q?=C3=A9ploiement=20pour=20inclure=20la=20branche=20master?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cloudflare.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cloudflare.yml b/.github/workflows/cloudflare.yml index f4f9bd5..d6d0e37 100644 --- a/.github/workflows/cloudflare.yml +++ b/.github/workflows/cloudflare.yml @@ -48,7 +48,7 @@ jobs: - name: Determine Deployment Target id: target run: | - if [ "${{ github.ref_name }}" = "main" ]; then + if [ "${{ github.ref_name }}" = "main" ] || [ "${{ github.ref_name }}" = "master" ]; then echo "env_flag=" >> $GITHUB_OUTPUT echo "env_name=Production" >> $GITHUB_OUTPUT else