mirror of
https://github.com/docker/build-push-action
synced 2024-11-10 05:21:40 +00:00
8be103ff82
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
33 lines
882 B
TypeScript
33 lines
882 B
TypeScript
import * as os from 'os';
|
|
import * as buildx from './buildx';
|
|
import {Inputs, getInputs, getArgs} from './context';
|
|
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;
|
|
}
|
|
|
|
if (!(await buildx.isAvailable())) {
|
|
core.setFailed(`Buildx is required. See https://github.com/docker/setup-buildx-action to set up buildx.`);
|
|
return;
|
|
}
|
|
|
|
const inputs: Inputs = await getInputs();
|
|
|
|
if (inputs.builder) {
|
|
core.info(`📌 Using builder instance ${inputs.builder}`);
|
|
await buildx.use(inputs.builder);
|
|
}
|
|
|
|
core.info(`🏃 Starting build...`);
|
|
await exec.exec('docker', await getArgs(inputs));
|
|
} catch (error) {
|
|
core.setFailed(error.message);
|
|
}
|
|
}
|
|
|
|
run();
|