Fix typo
parent
ab9d6f5eea
commit
3a4cc5083f
|
@ -6955,7 +6955,7 @@ class Input {
|
||||||
return Input.getInput('dockerIsolationMode') || 'default';
|
return Input.getInput('dockerIsolationMode') || 'default';
|
||||||
}
|
}
|
||||||
static get containerRegistryRepository() {
|
static get containerRegistryRepository() {
|
||||||
return Input.getInput('containerRegistryUrl');
|
return Input.getInput('containerRegistryRepository');
|
||||||
}
|
}
|
||||||
static get containerRegistryImageVersion() {
|
static get containerRegistryImageVersion() {
|
||||||
return Input.getInput('containerRegistryImageVersion');
|
return Input.getInput('containerRegistryImageVersion');
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -257,7 +257,7 @@ class Input {
|
||||||
}
|
}
|
||||||
|
|
||||||
static get containerRegistryRepository(): string {
|
static get containerRegistryRepository(): string {
|
||||||
return Input.getInput('containerRegistryUrl')!;
|
return Input.getInput('containerRegistryRepository')!;
|
||||||
}
|
}
|
||||||
|
|
||||||
static get containerRegistryImageVersion(): string {
|
static get containerRegistryImageVersion(): string {
|
||||||
|
|
Loading…
Reference in New Issue