From ae28309b4280e703923f1a7d37d049104b30b7aa Mon Sep 17 00:00:00 2001 From: David Hiendl Date: Sat, 2 Dec 2023 20:10:07 +0100 Subject: [PATCH] debug --- dist/index.js | 2 +- src/lib.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 01174fa..c7cd19e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -62228,7 +62228,7 @@ function prepareDestinations(registries, tags) { const destinations = []; registries.forEach((registry) => { tags.forEach((tag) => { - destinations.push(registry + tag); + destinations.push(registry + ':' + tag); }); }); diff --git a/src/lib.js b/src/lib.js index 474cfc7..cf3f45c 100644 --- a/src/lib.js +++ b/src/lib.js @@ -128,7 +128,7 @@ export function prepareDestinations(registries, tags) { const destinations = []; registries.forEach((registry) => { tags.forEach((tag) => { - destinations.push(registry + tag); + destinations.push(registry + ':' + tag); }); });