fix: étendre la condition de déploiement pour inclure la branche master

This commit is contained in:
2026-01-05 15:42:35 +01:00
parent e32e7bf7bb
commit b30f2eb523

View File

@@ -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