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 1915c31 commit bc06cddCopy full SHA for bc06cdd
actions/push-to-gar-docker/action.yaml
@@ -82,6 +82,11 @@ inputs:
82
description: |
83
Secrets to expose to the build. Only needed when authenticating to private repositories outside the repository in which the image is being built.
84
required: false
85
+ load:
86
+ description: |
87
+ Whether to load the built image into the local docker daemon.
88
+ required: false
89
+ default: "false"
90
91
outputs:
92
version:
@@ -198,6 +203,7 @@ runs:
198
203
ssh: ${{ inputs.ssh }}
199
204
build-contexts: ${{ inputs.build-contexts }}
200
205
secrets: ${{ inputs.secrets }}
206
+ load: ${{ inputs.load == 'true' }}
201
207
202
208
- name: Cleanup checkout directory
209
if: ${{ !cancelled() }}
0 commit comments