From 9a750a33bab7633950c1422d2a22e1626910242a Mon Sep 17 00:00:00 2001 From: Marius Klocke Date: Sun, 30 Jun 2024 16:01:59 +0200 Subject: [PATCH] Fix variable reference in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f2a7d6a0..e7b24440 100644 --- a/Makefile +++ b/Makefile @@ -50,5 +50,5 @@ test: fi publish: - echo "${DOCKER_TOKEN}" | docker login -u "${DOCKER_USER}" --password-stdin + echo "${DOCKER_TOKEN}" | docker login -u "${DOCKER_USERNAME}" --password-stdin docker push --quiet "${TARGET_IMAGE}"