-
What are the commands ran when you set if I set push to false, the action will build the dockerfile without pushing to the container registry? (that'd be great for testing). |
Beta Was this translation helpful? Give feedback.
Answered by
crazy-max
Jul 1, 2024
Replies: 1 comment 2 replies
-
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
GersonTrj
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
push
is the same as--push
flag of build command: https://docs.docker.com/reference/cli/docker/buildx/build/#push.true
will push to the registry while false does not set--push
for the build command in the action which would result with nothing being exported.