Additional cleanup
parent
d491502486
commit
7afd91316d
|
@ -12,6 +12,9 @@
|
||||||
|
|
||||||
#### Successful Workflow Run Link
|
#### Successful Workflow Run Link
|
||||||
|
|
||||||
|
PRs don't have access to secrets so you will need to provide a link to a successful run of the workflows from your own
|
||||||
|
repo.
|
||||||
|
|
||||||
- ...
|
- ...
|
||||||
|
|
||||||
#### Checklist
|
#### Checklist
|
||||||
|
|
|
@ -5916,6 +5916,9 @@ class Docker {
|
||||||
break;
|
break;
|
||||||
case 'win32':
|
case 'win32':
|
||||||
runCommand = this.getWindowsCommand(image, parameters);
|
runCommand = this.getWindowsCommand(image, parameters);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error(`Operation system, ${process.platform}, is not supported yet.`);
|
||||||
}
|
}
|
||||||
options.silent = silent;
|
options.silent = silent;
|
||||||
options.ignoreReturnCode = true;
|
options.ignoreReturnCode = true;
|
||||||
|
@ -6487,7 +6490,7 @@ class ImageTag {
|
||||||
const { image, tag, customImage } = this;
|
const { image, tag, customImage } = this;
|
||||||
if (customImage)
|
if (customImage)
|
||||||
return customImage;
|
return customImage;
|
||||||
return `${image}:${tag}`; // '0' here represents the docker repo version
|
return `${image}:${tag}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports["default"] = ImageTag;
|
exports["default"] = ImageTag;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -21,6 +21,9 @@ class Docker {
|
||||||
break;
|
break;
|
||||||
case 'win32':
|
case 'win32':
|
||||||
runCommand = this.getWindowsCommand(image, parameters);
|
runCommand = this.getWindowsCommand(image, parameters);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error(`Operation system, ${process.platform}, is not supported yet.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
options.silent = silent;
|
options.silent = silent;
|
||||||
|
|
|
@ -169,7 +169,7 @@ class ImageTag {
|
||||||
|
|
||||||
if (customImage) return customImage;
|
if (customImage) return customImage;
|
||||||
|
|
||||||
return `${image}:${tag}`; // '0' here represents the docker repo version
|
return `${image}:${tag}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue