mirror of
https://github.com/docker/setup-qemu-action.git
synced 2025-04-23 13:02:44 +08:00
17 lines
434 B
TypeScript
17 lines
434 B
TypeScript
import * as core from '@actions/core';
|
|
import {Util} from '@docker/actions-toolkit/lib/util';
|
|
|
|
export interface Inputs {
|
|
image: string;
|
|
platforms: string;
|
|
cacheImage: boolean;
|
|
}
|
|
|
|
export function getInputs(): Inputs {
|
|
return {
|
|
image: core.getInput('image') || 'docker.io/tonistiigi/binfmt:latest',
|
|
platforms: Util.getInputList('platforms').join(',') || 'all',
|
|
cacheImage: core.getBooleanInput('cache-image')
|
|
};
|
|
}
|