Additional cleanup

pull/607/head
Andrew Kahr 2023-12-10 03:31:30 -08:00
parent d491502486
commit 7afd91316d
5 changed files with 12 additions and 3 deletions

View File

@ -12,6 +12,9 @@
#### 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

5
dist/index.js generated vendored
View File

@ -5916,6 +5916,9 @@ class Docker {
break;
case 'win32':
runCommand = this.getWindowsCommand(image, parameters);
break;
default:
throw new Error(`Operation system, ${process.platform}, is not supported yet.`);
}
options.silent = silent;
options.ignoreReturnCode = true;
@ -6487,7 +6490,7 @@ class ImageTag {
const { image, tag, customImage } = this;
if (customImage)
return customImage;
return `${image}:${tag}`; // '0' here represents the docker repo version
return `${image}:${tag}`;
}
}
exports["default"] = ImageTag;

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -21,6 +21,9 @@ class Docker {
break;
case 'win32':
runCommand = this.getWindowsCommand(image, parameters);
break;
default:
throw new Error(`Operation system, ${process.platform}, is not supported yet.`);
}
options.silent = silent;

View File

@ -169,7 +169,7 @@ class ImageTag {
if (customImage) return customImage;
return `${image}:${tag}`; // '0' here represents the docker repo version
return `${image}:${tag}`;
}
}