Fix the docker push job

After https://github.com/NixOS/nix/pull/10071, the CI was trying to push
ghcr.io/nixos/nix:master for backwards-compatibility, but the image was
not tagged as such, causing the job to fail.

Fix this.
This commit is contained in:
Théophane Hufschmitt 2024-03-02 09:00:42 +01:00
parent ba9b6b29b7
commit 089d91ed4c

View file

@ -157,4 +157,5 @@ jobs:
docker push $IMAGE_ID:$NIX_VERSION
docker push $IMAGE_ID:latest
# deprecated 2024-02-24
docker tag nix:$NIX_VERSION $IMAGE_ID:master
docker push $IMAGE_ID:master