remove the manifest before creating them

This commit is contained in:
Rok Garbas 2022-02-18 00:32:38 +01:00
parent bf435664d7
commit f0de5fb8e7
No known key found for this signature in database
GPG key ID: A0E01EF44C27BF00

View file

@ -2,7 +2,7 @@
# TODO: parse from .version
MAINTENANCE_VERSION="2.6"
VERSION="$MAINTENANCE_VERSION.0"
VERSION="$MAINTENANCE_VERSION.1"
# Should be override `latest` tag, default true
PUSH_AS_LATEST=1
@ -55,9 +55,11 @@ do
done
echo "=> Creating $VERSION multi platform docker manifest for the following platforms: $PLATFORMS ..."
docker manifest rm nixos/nix:$VERSION $DOCKER_MANIFEST
docker manifest create nixos/nix:$VERSION $DOCKER_MANIFEST
if [ $PUSH_AS_LATEST -eq 1 ]; then
echo "=> Creating latest multi platform docker manifest for the following platforms: $PLATFORMS ..."
docker manifest rm nixos/nix:latest $DOCKER_MANIFEST_LATEST
docker manifest create nixos/nix:latest $DOCKER_MANIFEST_LATEST
fi