Remove console statements

This commit is contained in:
Webber
2019-12-22 22:24:46 +01:00
committed by Webber Takken
parent 5abc3164f9
commit 948a53575b
3 changed files with 6 additions and 18 deletions

View File

@@ -11,8 +11,6 @@ async function action() {
const { dockerfile, workspace } = Action;
const { version, platform, projectPath, buildName, buildsPath, method } = Input.getFromUser();
console.log({ version, platform, projectPath, buildName, buildsPath, method });
const baseImage = new ImageTag({ version, platform });
const builtImage = await Docker.build({ path: workspace, dockerfile, baseImage });