Skip to content

Commit 58d9866

Browse files
authored
feat(build-push-to-dockerhub): support load parameter (#1193)
Add support for the load parameter with build-push-to-dockerhub
1 parent bc06cdd commit 58d9866

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

actions/build-push-to-dockerhub/action.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ inputs:
5353
description: |
5454
Secrets to expose to the build. Only needed when authenticating to private repositories outside the repository in which the image is being built.
5555
required: false
56+
load:
57+
description: |
58+
Whether to load the built image into the local docker daemon.
59+
required: false
60+
default: "false"
5661

5762
runs:
5863
using: composite
@@ -126,3 +131,4 @@ runs:
126131
cache-from: ${{ inputs.cache-from }}
127132
cache-to: ${{ inputs.cache-to }}
128133
secrets: ${{ inputs.secrets }}
134+
load: ${{ inputs.load == 'true' }}

0 commit comments

Comments
 (0)