1
0
Files
setup-qemu-action/src/context.ts
T

15 lines
348 B
TypeScript
Raw Normal View History

2022-10-08 18:39:00 +02:00
import * as core from '@actions/core';
2023-02-19 20:49:10 +01:00
import {Util} from '@docker/actions-toolkit/lib/util';
2022-10-08 18:39:00 +02:00
export interface Inputs {
image: string;
platforms: string;
}
export function getInputs(): Inputs {
return {
image: core.getInput('image') || 'tonistiigi/binfmt:latest',
2023-02-19 20:49:10 +01:00
platforms: Util.getInputList('platforms').join(',') || 'all'
2022-10-08 18:39:00 +02:00
};
}