From 40958f022ecf26b2efe0a20e16f7c8d564e8148e Mon Sep 17 00:00:00 2001 From: Mirko Sekulic Date: Tue, 13 Aug 2024 09:59:07 +0200 Subject: [PATCH] exclude dev as default environment to deploy after merge (#13351) --- .github/workflows/deploy-designer.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-designer.yaml b/.github/workflows/deploy-designer.yaml index c67a92367dc..761ef3c4024 100644 --- a/.github/workflows/deploy-designer.yaml +++ b/.github/workflows/deploy-designer.yaml @@ -39,7 +39,7 @@ jobs: - name: Construct environment id: construct-enviornments run: | - environments="${{ github.event.inputs.environments || 'dev,staging,prod' }}" + environments="${{ github.event.inputs.environments || 'staging,prod' }}" jsonArray=$(echo "[\"$(echo $environments | sed 's/,/\",\"/g')\"]") echo "environmentsjson=${jsonArray}" >> $GITHUB_OUTPUT