mirror of
https://gitee.com/actions-mirror/docker-setup-qemu-action
synced 2025-04-06 09:40:56 +08:00
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'
|
|
};
|
|
}
|