Merge pull request #371 from crazy-max/console-output

Enhance console output
pull/373/head v2.5.0
CrazyMax 4 years ago committed by GitHub
commit ad44023a93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

2
dist/index.js generated vendored

@ -2530,10 +2530,8 @@ function run() {
}
stateHelper.setTmpDir(context.tmpDir());
const buildxVersion = yield buildx.getVersion();
core.info(`Using buildx ${buildxVersion}`);
const defContext = context.defaultContext();
let inputs = yield context.getInputs(defContext);
core.info(`Building...`);
const args = yield context.getArgs(inputs, defContext, buildxVersion);
yield exec.exec('docker', args).then(res => {
if (res.stderr != '' && !res.success) {

@ -19,12 +19,9 @@ async function run(): Promise<void> {
stateHelper.setTmpDir(context.tmpDir());
const buildxVersion = await buildx.getVersion();
core.info(`Using buildx ${buildxVersion}`);
const defContext = context.defaultContext();
let inputs: context.Inputs = await context.getInputs(defContext);
core.info(`Building...`);
const args: string[] = await context.getArgs(inputs, defContext, buildxVersion);
await exec.exec('docker', args).then(res => {
if (res.stderr != '' && !res.success) {

Loading…
Cancel
Save