Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Publish debug and platform param #23

Merged
merged 3 commits into from
Dec 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ on:
required: false
type: string
default: ''

build_args:
description: 'The build arguments for the image'
required: false
Expand Down Expand Up @@ -129,6 +128,7 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: ${{ inputs.build_args }}
platforms: ${{ inputs.platforms }}

- name: Scan Docker Image
if: env.MONDOO_CONFIG_BASE64 != ''
Expand Down Expand Up @@ -164,7 +164,8 @@ jobs:
- name: Publish container
if: ${{ github.event_name != 'pull_request' && needs.pre-commit.outputs.version != '' }}
run: |
for img in $(echo "${{ fromJson(steps.meta.outputs.json).tags }}"" | jq -r '.tags[]' ); do
set -ex
for img in $( jq -r '.tags[]' <<< '${{ steps.meta.outputs.json }}' ); do
docker push $img
done

Expand Down
Loading