We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89b3247 commit 2335cebCopy full SHA for 2335ceb
actions/build-image/action.yml
@@ -33,6 +33,10 @@ inputs:
33
description: Whether to push images to registry
34
required: false
35
default: "false"
36
+ load:
37
+ description: Whether to load the built image into the Docker engine
38
+ required: false
39
+ default: "false"
40
cache-gha:
41
description: Whether to use GitHub Actions cache for build caching
42
@@ -226,7 +230,7 @@ runs:
226
230
file: ${{ steps.options.outputs.file }}
227
231
pull: true
228
232
push: ${{ inputs.push == 'true' }}
229
- load: ${{ inputs.push != 'true' }}
233
+ load: ${{ inputs.load == 'true' }}
234
build-args: ${{ steps.options.outputs.build_args }}
235
tags: ${{ steps.options.outputs.tags }}
236
outputs: ${{ steps.options.outputs.output }}
0 commit comments