1
0
Files
build-push-action/src/main.ts
T

66 lines
1.9 KiB
TypeScript
Raw Normal View History

2020-09-02 10:07:11 +02:00
import * as fs from 'fs';
2020-08-16 00:36:41 +02:00
import * as buildx from './buildx';
2020-09-02 10:07:11 +02:00
import * as context from './context';
import * as stateHelper from './state-helper';
2020-08-16 00:36:41 +02:00
import * as core from '@actions/core';
2021-06-22 19:52:21 +02:00
import * as exec from '@actions/exec';
2020-08-16 00:36:41 +02:00
async function run(): Promise<void> {
try {
2021-04-27 16:16:22 +02:00
core.startGroup(`Docker info`);
await exec.exec('docker', ['version']);
await exec.exec('docker', ['info']);
core.endGroup();
2020-08-16 00:36:41 +02:00
2020-08-16 05:53:50 +02:00
if (!(await buildx.isAvailable())) {
2021-04-27 16:16:22 +02:00
core.setFailed(`Docker buildx is required. See https://github.com/docker/setup-buildx-action to set up buildx.`);
return;
2020-08-16 00:36:41 +02:00
}
stateHelper.setTmpDir(context.tmpDir());
2020-08-16 00:36:41 +02:00
2020-08-23 03:31:38 +02:00
const buildxVersion = await buildx.getVersion();
const defContext = context.defaultContext();
let inputs: context.Inputs = await context.getInputs(defContext);
2020-08-16 22:31:37 +02:00
const args: string[] = await context.getArgs(inputs, defContext, buildxVersion);
2021-06-22 19:52:21 +02:00
await exec
.getExecOutput('docker', args, {
ignoreReturnCode: true
})
.then(res => {
if (res.stderr.length > 0 && res.exitCode != 0) {
2021-07-01 16:55:21 +02:00
throw new Error(`buildx failed with: ${res.stderr.match(/(.*)\s*$/)![0].trim()}`);
2021-06-22 19:52:21 +02:00
}
});
2020-08-17 22:18:15 +02:00
2021-08-16 23:44:13 +02:00
await core.group(`Setting outputs`, async () => {
const imageID = await buildx.getImageID();
const metadata = await buildx.getMetadata();
if (imageID) {
core.info(`digest=${imageID}`);
context.setOutput('digest', imageID);
}
if (metadata) {
core.info(`metadata=${metadata}`);
context.setOutput('metadata', metadata);
}
});
2020-08-16 00:36:41 +02:00
} catch (error) {
core.setFailed(error.message);
}
}
2020-09-02 10:07:11 +02:00
async function cleanup(): Promise<void> {
if (stateHelper.tmpDir.length > 0) {
2021-04-27 16:16:22 +02:00
core.startGroup(`Removing temp folder ${stateHelper.tmpDir}`);
2020-09-02 10:07:11 +02:00
fs.rmdirSync(stateHelper.tmpDir, {recursive: true});
2021-04-27 16:16:22 +02:00
core.endGroup();
2020-09-02 10:07:11 +02:00
}
}
if (!stateHelper.IsPost) {
run();
} else {
cleanup();
}