Would it make sense to add a promote target to retag and push an image?
Just thinking about the release process. I have the image built in the feature branch, everything merged to main. Now I want to tag my built image with a version number and push it to my registry again.
docker pull source:version
docker tag source:version destination:release-version
docker push destination:release-version
Would it make sense to add a promote target to retag and push an image?
Just thinking about the release process. I have the image built in the feature branch, everything merged to main. Now I want to tag my built image with a version number and push it to my registry again.