Skip to content

Commit

Permalink
Fix seed container image build
Browse files Browse the repository at this point in the history
The argument list was missing -e which meant the first argument was
interpreted as image regexes.
  • Loading branch information
priteau authored and Alex-Welsh committed Nov 1, 2023
1 parent 5e26966 commit e061186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/stackhpc-container-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:

- name: Build and push kolla seed images
run: |
args="kolla_base_distro=${{ matrix.distro }}"
args="-e kolla_base_distro=${{ matrix.distro }}"
args="$args -e kolla_tag=$KOLLA_TAG"
if ${{ inputs.push }} == 'true'; then
args="$args --push"
Expand Down

0 comments on commit e061186

Please sign in to comment.