This commit is contained in:
David Hiendl 2023-12-02 20:10:07 +01:00
parent bbfbaf4b2d
commit ae28309b42
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View File

@ -62228,7 +62228,7 @@ function prepareDestinations(registries, tags) {
const destinations = [];
registries.forEach((registry) => {
tags.forEach((tag) => {
destinations.push(registry + tag);
destinations.push(registry + ':' + tag);
});
});

View File

@ -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);
});
});