setup-qemu-action/src/context.ts
CrazyMax 2ddad4401e
uninstall current emulators
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
2026-05-27 17:33:46 +02:00

18 lines
497 B
TypeScript

import * as core from '@actions/core';
import {Util} from '@docker/actions-toolkit/lib/util.js';
export interface Inputs {
image: string;
platforms: string;
reset: boolean;
cacheImage: boolean;
}
export function getInputs(): Inputs {
return {
image: core.getInput('image') || 'docker.io/tonistiigi/binfmt:latest',
platforms: Util.getInputList('platforms').join(',') || 'all',
reset: core.getBooleanInput('reset'),
cacheImage: core.getBooleanInput('cache-image')
};
}