fix ci_registry variable not being set anymore
This commit is contained in:
parent
6c5883876a
commit
a510c83927
3
dist/index.js
vendored
3
dist/index.js
vendored
@ -62404,7 +62404,8 @@ try {
|
|||||||
|
|
||||||
let ci_registry = false;
|
let ci_registry = false;
|
||||||
if (core.getBooleanInput('add_ci_registry_target')) {
|
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);
|
targetRepos.push(ci_registry_repo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -29,7 +29,8 @@ try {
|
|||||||
|
|
||||||
let ci_registry = false;
|
let ci_registry = false;
|
||||||
if (core.getBooleanInput('add_ci_registry_target')) {
|
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);
|
targetRepos.push(ci_registry_repo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user