File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ jobs:
208208 echo 'Images?: ${{ steps.prep.outputs.container-images }}'
209209
210210 - name : Build container images locally
211- if : contains('Docker Image', 'Docker Image') == 'true'
211+ if : contains('Docker Image', 'Docker Image')
212212 uses : docker/build-push-action@0adf9959216b96bec444f325f1e493d4aa344497 # v6.14.0
213213 with :
214214 context : ./distributions/${{ inputs.distribution }}
@@ -217,12 +217,12 @@ jobs:
217217 tags : ${{ inputs.distribution }}:${{ steps.prep.outputs.version }}-${{ steps.prep.outputs.arch }}
218218
219219 - name : Export container image to tarball
220- if : contains(steps.prep.outputs.types, 'Docker Image') == 'true'
220+ if : contains(steps.prep.outputs.types, 'Docker Image')
221221 run : |
222222 docker save ${{ inputs.distribution }}:${{ steps.prep.outputs.version }}-${{ steps.prep.outputs.arch }} > /tmp/${{ inputs.distribution }}.tar
223223
224224 - name : Upload container image artifact
225- if : contains(steps.prep.outputs.types, 'Docker Image') == 'true'
225+ if : contains(steps.prep.outputs.types, 'Docker Image')
226226 uses : actions/upload-artifact@v4
227227 with :
228228 name : ${{ inputs.distribution }}-image-${{ steps.prep.outputs.version }}-${{ steps.prep.outputs.arch }}
You can’t perform that action at this time.
0 commit comments