Skip to content

Commit a3b57ef

Browse files
workflows: fix optional image pushing
Signed-off-by: Patrick Stephens <pat@chronosphere.io>
1 parent 9dd2094 commit a3b57ef

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/call-build-images.yaml

+5-6
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ on:
4949
cosign_private_key_password:
5050
description: If the Cosign key requires a password then specify here, otherwise not required.
5151
required: false
52-
env:
53-
DOCKER_PUSH_EXTRA_FLAGS: ${{ inputs.push && '' || '--dry-run' }}
5452
jobs:
5553
call-build-images-meta:
5654
name: Extract any supporting metadata
@@ -123,12 +121,13 @@ jobs:
123121
file: ./dockerfiles/Dockerfile
124122
context: .
125123
target: ${{ matrix.target }}
126-
outputs: type=image,name=${{ inputs.registry }}/${{ inputs.image }},push-by-digest=true,name-canonical=true,push=true
124+
outputs: type=image,name=${{ inputs.registry }}/${{ inputs.image }},push-by-digest=true,name-canonical=true,push=${{ inputs.push }}
127125
platforms: linux/${{ matrix.platform }}
128126
# Must be disabled to provide legacy format images from the registry
129127
provenance: false
128+
# This is configured in outputs above
130129
push: ${{ inputs.push }}
131-
load: ${{ !inputs.push}}
130+
load: false
132131
build-args: |
133132
FLB_NIGHTLY_BUILD=${{ inputs.unstable }}
134133
RELEASE_VERSION=${{ inputs.version }}
@@ -191,7 +190,7 @@ jobs:
191190

192191
- name: Create production manifest
193192
run: |
194-
docker buildx imagetools create $DOCKER_PUSH_EXTRA_FLAGS $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
193+
${{ inputs.push && '' || 'echo' }} docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
195194
$(printf '${{ inputs.registry }}/${{ inputs.image }}@sha256:%s ' *)
196195
shell: bash
197196
working-directory: /tmp/production-digests
@@ -243,7 +242,7 @@ jobs:
243242

244243
- name: Create debug manifest
245244
run: |
246-
docker buildx imagetools create $DOCKER_PUSH_EXTRA_FLAGS $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
245+
${{ inputs.push && '' || 'echo' }} docker buildx imagetools create $DOCKER_PUSH_EXTRA_FLAGS $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
247246
$(printf '${{ inputs.registry }}/${{ inputs.image }}@sha256:%s ' *)
248247
shell: bash
249248
working-directory: /tmp/debug-digests

0 commit comments

Comments
 (0)