2020-08-15 22:36:41 +00:00
|
|
|
import * as os from 'os';
|
|
|
|
import * as buildx from './buildx';
|
2020-08-16 15:18:08 +00:00
|
|
|
import {Inputs, getInputs, getArgs} from './context';
|
2020-08-15 22:36:41 +00:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as exec from '@actions/exec';
|
|
|
|
|
|
|
|
async function run(): Promise<void> {
|
|
|
|
try {
|
|
|
|
if (os.platform() !== 'linux') {
|
|
|
|
core.setFailed('Only supported on linux platform');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-08-16 03:53:50 +00:00
|
|
|
if (!(await buildx.isAvailable())) {
|
|
|
|
core.setFailed(`Buildx is required. See https://github.com/docker/setup-buildx-action to set up buildx.`);
|
|
|
|
return;
|
2020-08-15 22:36:41 +00:00
|
|
|
}
|
|
|
|
|
2020-08-16 15:18:08 +00:00
|
|
|
const inputs: Inputs = await getInputs();
|
2020-08-16 15:24:31 +00:00
|
|
|
const args: string[] = await getArgs(inputs);
|
2020-08-16 03:53:50 +00:00
|
|
|
|
|
|
|
if (inputs.builder) {
|
|
|
|
core.info(`📌 Using builder instance ${inputs.builder}`);
|
|
|
|
await buildx.use(inputs.builder);
|
|
|
|
}
|
2020-08-15 22:36:41 +00:00
|
|
|
|
|
|
|
core.info(`🏃 Starting build...`);
|
2020-08-16 15:24:31 +00:00
|
|
|
await exec.exec('docker', args);
|
2020-08-15 22:36:41 +00:00
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
run();
|