Last active
May 22, 2024 15:46
-
-
Save qrkourier/3d9ab3e3e79547e807d821010d9e361e to your computer and use it in GitHub Desktop.
Tag the last known good semver as latest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(set -euxopipefail | |
GOOD_VERSION=1.0.0 | |
for REPO in ziti-{cli,controller,router}; do | |
docker buildx imagetools create --tag openziti/${REPO}:latest openziti/${REPO}:${GOOD_VERSION} | |
done | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment