From 30df3a0c4b9e2ed446e959cf947fd88b6de411ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20N=C3=BCtzi?= Date: Tue, 9 Jul 2024 17:50:35 +0200 Subject: [PATCH] fix: stupid token error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gabriel Nützi --- tools/ci/upload-image.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ci/upload-image.sh b/tools/ci/upload-image.sh index d5902c5..1be4d40 100755 --- a/tools/ci/upload-image.sh +++ b/tools/ci/upload-image.sh @@ -41,8 +41,8 @@ function main() { skopeo \ --insecure-policy \ copy \ - --dest-username <(echo "$username") \ - --dest-password <(echo "$password") \ + --dest-username "$(cat <(echo "$username"))" \ + --dest-password "$(cat <(echo "$password"))" \ "docker-archive://$image_path" \ "docker://$image_name"