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 bc06cdd commit 58d9866Copy full SHA for 58d9866
actions/build-push-to-dockerhub/action.yaml
@@ -53,6 +53,11 @@ inputs:
53
description: |
54
Secrets to expose to the build. Only needed when authenticating to private repositories outside the repository in which the image is being built.
55
required: false
56
+ load:
57
+ description: |
58
+ Whether to load the built image into the local docker daemon.
59
+ required: false
60
+ default: "false"
61
62
runs:
63
using: composite
@@ -126,3 +131,4 @@ runs:
126
131
cache-from: ${{ inputs.cache-from }}
127
132
cache-to: ${{ inputs.cache-to }}
128
133
secrets: ${{ inputs.secrets }}
134
+ load: ${{ inputs.load == 'true' }}
0 commit comments