Skip to content

Commit

Permalink
Update docker_config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorMirosavljevicHTEC authored Aug 8, 2023
1 parent 9a83f6b commit f2418bb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/docker_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ jobs:
run: |
set -e
set -x
BRANCH_NAME=${{ github.event.pull_request.head.ref }}
branch_config=$(grep -E "^$BRANCH_NAME;" branch_env_config.txt)
branch_config=$(grep -E "^${{ github.event.pull_request.head.ref }};" branch_env_config.txt)
echo "BRANCH_CONFIG: $branch_config"
if [[ -n "$branch_config" ]]; then
if [ "$branch_config" !="" ]; then
IFS=';' read -ra config <<< "$branch_config"
flags=""
for val in "${config[@]:1}"; do
Expand Down

0 comments on commit f2418bb

Please sign in to comment.