Skip to content

Commit

Permalink
exclude dev as default environment to deploy after merge (#13351)
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkoSekulic authored Aug 13, 2024
1 parent 1cea270 commit 40958f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-designer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 40958f0

Please sign in to comment.