mirror of
https://github.com/docker/build-push-action
synced 2024-11-23 10:41:42 +00:00
f7cac3b071
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
24 lines
697 B
TypeScript
24 lines
697 B
TypeScript
import * as docker from './docker';
|
|
import * as exec from './exec';
|
|
|
|
export async function isAvailable(): Promise<Boolean> {
|
|
return await exec.exec(`docker`, ['buildx'], true).then(res => {
|
|
if (res.stderr != '' && !res.success) {
|
|
return false;
|
|
}
|
|
return res.success;
|
|
});
|
|
}
|
|
|
|
export async function isInstalled(): Promise<Boolean> {
|
|
const dockerCfg = await docker.config();
|
|
return dockerCfg?.aliases?.builder == 'buildx';
|
|
}
|
|
|
|
export async function use(builder: string): Promise<void> {
|
|
return await exec.exec(`docker`, ['buildx', 'use', '--builder', builder], false).then(res => {
|
|
if (res.stderr != '' && !res.success) {
|
|
throw new Error(res.stderr);
|
|
}
|
|
});
|
|
}
|