You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when one of the image build is skipped (example below), push will still try to push all two images, is it possible for push to honor image.build.skip property?
<images>
<image>
<build>
<name>image1</name>
<skip>${maybe.skipped.1}</skip>
</build>
</image>
<image>
<build>
<name>image2</name>
<skip>${maybe.skipped.2}</skip> <!-- say this image build is skipped -->
</build>
</image>
<images>
Thanks
The text was updated successfully, but these errors were encountered:
I agree that there should be a possibility to skip the push for certain images. However, I would introduce a skipPush field (like skipTag), to deliberately specify that intent. This is mostly to not break backwards compatibility.
Unfortunately I don't have any spare time at the moment, so if you are interested in that feature, feel free to submit a pull request and I will help you to integrate it.
mattnelson
added a commit
to mattnelson/docker-maven-plugin
that referenced
this issue
Aug 27, 2020
Hi,
Currently, when one of the image build is skipped (example below), push will still try to push all two images, is it possible for push to honor image.build.skip property?
Thanks
The text was updated successfully, but these errors were encountered: