Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
daler committed Feb 5, 2024
1 parent cc61158 commit 1398b8f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/generic_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ jobs:
# ----------------------------------------------------------------------
# Build each arch's image
for arch in $archs_and_images ; do
arch=$(echo $archs_and_images | cut -f1 -d "=")
base_image=$(echo $archs_and_images | cut -f2 -d "=")
for arch_and_image in "${archs_and_images[@]}" ; do
arch=$(echo $arch_and_image | cut -f1 -d "=")
base_image=$(echo $arch_and_image | cut -f2 -d "=")
BASE_IMAGE_BUILD_ARG=""
if [ ! -z "$base_image" ]; then
BASE_IMAGE_BUILD_ARG="--build-arg=base_image="${base_image}""
Expand Down

0 comments on commit 1398b8f

Please sign in to comment.