mirror of
https://github.com/docker/setup-qemu-action.git
synced 2024-11-06 04:05:40 +01:00
df78eaf547
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
15 lines
348 B
TypeScript
15 lines
348 B
TypeScript
import * as core from '@actions/core';
|
|
import {Util} from '@docker/actions-toolkit/lib/util';
|
|
|
|
export interface Inputs {
|
|
image: string;
|
|
platforms: string;
|
|
}
|
|
|
|
export function getInputs(): Inputs {
|
|
return {
|
|
image: core.getInput('image') || 'tonistiigi/binfmt:latest',
|
|
platforms: Util.getInputList('platforms').join(',') || 'all'
|
|
};
|
|
}
|