diff --git a/dist/index.js b/dist/index.js index 7eecdde..f9a74eb 100644 --- a/dist/index.js +++ b/dist/index.js @@ -62404,7 +62404,8 @@ try { let ci_registry = false; if (core.getBooleanInput('add_ci_registry_target')) { - const ci_registry_repo = information.ci_hostname + '/' + repoStr + ':'; + ci_registry = information.ci_hostname + const ci_registry_repo = ci_registry + '/' + repoStr + ':'; targetRepos.push(ci_registry_repo); } diff --git a/src/action.js b/src/action.js index 8ebd69a..5f73805 100644 --- a/src/action.js +++ b/src/action.js @@ -29,7 +29,8 @@ try { let ci_registry = false; if (core.getBooleanInput('add_ci_registry_target')) { - const ci_registry_repo = information.ci_hostname + '/' + repoStr + ':'; + ci_registry = information.ci_hostname; + const ci_registry_repo = ci_registry + '/' + repoStr + ':'; targetRepos.push(ci_registry_repo); }