diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 9396d6cb..b00128c5 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -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 diff --git a/dist/index.js b/dist/index.js index b63cde65..44232ca2 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/dist/index.js.map b/dist/index.js.map index 02291496..f5a90303 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/src/model/docker.ts b/src/model/docker.ts index 6d7b2843..1beb4923 100644 --- a/src/model/docker.ts +++ b/src/model/docker.ts @@ -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; diff --git a/src/model/image-tag.ts b/src/model/image-tag.ts index cf484708..cf4de698 100644 --- a/src/model/image-tag.ts +++ b/src/model/image-tag.ts @@ -169,7 +169,7 @@ class ImageTag { if (customImage) return customImage; - return `${image}:${tag}`; // '0' here represents the docker repo version + return `${image}:${tag}`; } }