fix(build-container): dry-run #6

Merged
t.behrendt merged 1 commits from fix-build-container-dry-run into main 2026-05-26 20:34:28 +02:00
Showing only changes of commit 624ac5086d - Show all commits
+2 -2
View File
@@ -63,7 +63,7 @@ jobs:
context: ${{ inputs.context }} context: ${{ inputs.context }}
file: ${{ inputs.dockerfile }} file: ${{ inputs.dockerfile }}
platforms: linux/${{ matrix.arch }} platforms: linux/${{ matrix.arch }}
push: ${{ !inputs.dry-run }} push: ${{ inputs.dry-run == false || inputs.dry-run == 'false' }}
provenance: false provenance: false
tags: | tags: |
${{ inputs.registry }}/${{ inputs.repo-name }}:${{ inputs.tag }}-${{ matrix.arch }} ${{ inputs.registry }}/${{ inputs.repo-name }}:${{ inputs.tag }}-${{ matrix.arch }}
@@ -72,7 +72,7 @@ jobs:
create_manifest: create_manifest:
name: Create manifest name: Create manifest
if: ${{ !inputs.dry-run }} if: ${{ inputs.dry-run == false || inputs.dry-run == 'false' }}
needs: needs:
- build_and_push - build_and_push
runs-on: ubuntu-latest runs-on: ubuntu-latest