From ab9e29985651c0d7678da4811cd8a2029480b427 Mon Sep 17 00:00:00 2001 From: Wilco van Beijnum Date: Tue, 12 Dec 2023 19:19:35 +0100 Subject: [PATCH] Resolve comments --- .github/workflows/continuous-delivery.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 26583f498..bff4c6224 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -34,7 +34,7 @@ jobs: echo 'This workflow can only be run on branches staging and master.' exit 1 fi - if [ "$GITHUB_REF_NAME" != 'master' ] && [ "$TARGET_ENV" == 'luxadmosam' ]; then + if [ "$TARGET_ENV" == 'luxadmosam' ] && [ "$GITHUB_REF_NAME" != 'master' ]; then echo 'Only the master branch can be deployed to Lux ad Mosam.' exit 1 fi