2020-08-16 00:36:41 +02:00
|
|
|
import * as os from 'os';
|
|
|
|
import * as buildx from './buildx';
|
2020-08-16 17:18:08 +02:00
|
|
|
import {Inputs, getInputs, getArgs} from './context';
|
2020-08-16 00:36:41 +02: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 05:53:50 +02: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-16 00:36:41 +02:00
|
|
|
}
|
|
|
|
|
2020-08-16 22:31:37 +02:00
|
|
|
let inputs: Inputs = await getInputs();
|
2020-08-16 05:53:50 +02:00
|
|
|
if (inputs.builder) {
|
|
|
|
core.info(`📌 Using builder instance ${inputs.builder}`);
|
|
|
|
await buildx.use(inputs.builder);
|
|
|
|
}
|
2020-08-16 22:31:37 +02:00
|
|
|
|
2020-08-16 00:36:41 +02:00
|
|
|
core.info(`🏃 Starting build...`);
|
2020-08-16 22:41:18 +02:00
|
|
|
const args: string[] = await getArgs(inputs);
|
2020-08-16 17:24:31 +02:00
|
|
|
await exec.exec('docker', args);
|
2020-08-17 22:18:15 +02:00
|
|
|
|
|
|
|
const imageID = await buildx.getImageID();
|
|
|
|
if (imageID) {
|
|
|
|
core.info('🛒 Extracting digest...');
|
|
|
|
core.info(`${imageID}`);
|
|
|
|
core.setOutput('digest', imageID);
|
|
|
|
}
|
2020-08-16 00:36:41 +02:00
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-17 18:35:15 +02:00
|
|
|
run();
|