Skip to content

Commit

Permalink
fix: base image matrix build arg
Browse files Browse the repository at this point in the history
  • Loading branch information
p5 authored Dec 2, 2024
1 parent 7620bb9 commit 0a5e79e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ jobs:
tags: |
${{ steps.generate-tags.outputs.alias_tags }}
build-args: |
${{ matrix.image-registry && format('BASE_IMAGE={0}', matrix.base-image) || '' }}
${{ matrix.base-image && format('BASE_IMAGE={0}', matrix.base-image) || '' }}
IMAGE_NAME=${{ matrix.image_name }}
SOURCE_ORG=${{ env.SOURCE_ORG }}
SOURCE_IMAGE=${{ env.SOURCE_IMAGE }}
Expand Down

0 comments on commit 0a5e79e

Please sign in to comment.