mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-12 21:35:38 +01:00
99bea387ee
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
19 lines
509 B
TypeScript
19 lines
509 B
TypeScript
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 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);
|
|
}
|
|
});
|
|
}
|