Skip to content

Commit 7168fe5

Browse files
priteauAlex-Welsh
authored andcommitted
Fix seed container image build
The argument list was missing -e which meant the first argument was interpreted as image regexes.
1 parent 0d1e5d5 commit 7168fe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/stackhpc-container-image-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174

175175
- name: Build and push kolla seed images
176176
run: |
177-
args="kolla_base_distro=${{ matrix.distro }}"
177+
args="-e kolla_base_distro=${{ matrix.distro }}"
178178
args="$args -e kolla_tag=${{ needs.generate-tag.outputs.kolla_tag }}"
179179
if ${{ inputs.push }} == 'true'; then
180180
args="$args --push"

0 commit comments

Comments
 (0)