fix: README.md use $IMG_NAME more
All checks were successful
Build and Push docker image / buildAndPush (push) Successful in 2m21s

This commit is contained in:
tamipes 2026-06-03 19:04:58 +02:00
parent 8a7a7cf2ec
commit 0b4c3b11a1

View file

@ -10,13 +10,13 @@ As you cannot run a forgejo runner with `nixos/nix` due to it not having `node`
IMG_NAME="nix" IMG_NAME="nix"
nix build --extra-experimental-features "flakes nix-command" . nix build --extra-experimental-features "flakes nix-command" .
docker load -i result docker load -i result
docker image tag nix "$URL/$USERNAME/$IMG_NAME:latest" docker image tag "$IMG_NAME" "$URL/$USERNAME/$IMG_NAME:latest"
docker login "https://$URL" docker login "https://$URL"
docker push "$URL/$USERNAME/$IMG_NAME" docker push "$URL/$USERNAME/$IMG_NAME"
rm result # don't forget to cleanup the GC root rm result # don't forget to cleanup the GC root
# I also tag with the date, but this might be unneeded # I also tag with the date, but this might be unneeded
docker image tag nix "$URL/$USERNAME/$IMG_NAME:latest$(date --iso-8601)" docker image tag "$IMG_NAME" "$URL/$USERNAME/$IMG_NAME:latest$(date --iso-8601)"
docker push "$URL/$USERNAME/$IMG_NAME" docker push "$URL/$USERNAME/$IMG_NAME"
``` ```