2 Commits

Author SHA1 Message Date
t.behrendt 341f59e95f fix(build-container): dry-run (#6)
Release / Release (push) Successful in 13s
Reviewed-on: #6
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-05-26 20:34:28 +02:00
t.behrendt ad7d57bb83 feat(build-container): add docker build cache (#5)
Release / Release (push) Successful in 5s
Reviewed-on: #5
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-05-26 20:25:19 +02:00
+4 -2
View File
@@ -63,14 +63,16 @@ 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 }}
cache-from: type=registry,ref=${{ inputs.registry }}/${{ inputs.repo-name }}:cache-${{ matrix.arch }}
cache-to: type=registry,ref=${{ inputs.registry }}/${{ inputs.repo-name }}:cache-${{ matrix.arch }},mode=max
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