From fc138a20018b7f70e89128bf8f0e07365ba4999b Mon Sep 17 00:00:00 2001 From: Igor Mirosavljevic <104914075+IgorMirosavljevicHTEC@users.noreply.github.com> Date: Tue, 8 Aug 2023 18:14:15 +0200 Subject: [PATCH] Update docker_config.yml --- .github/workflows/docker_config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker_config.yml b/.github/workflows/docker_config.yml index d59ce1a..3057e36 100644 --- a/.github/workflows/docker_config.yml +++ b/.github/workflows/docker_config.yml @@ -14,9 +14,9 @@ jobs: run: | set -e set -x - branch_config=$(grep -E "^${{ github.event.pull_request.head.ref }};" branch_env_config.txt) + branch_config=$(grep -E "${{ github.event.pull_request.head.ref }};" branch_env_config.txt) - if [ -z "$(grep -E "^${{ github.event.pull_request.head.ref }};" branch_env_config.txt)" ]; then + if [ -z "$(grep -E "${{ github.event.pull_request.head.ref }};" branch_env_config.txt)" ]; then echo "No special flags set for branch ${{ github.event.pull_request.head.ref }}" else IFS=';' read -ra config <<< "$branch_config"