mirror of
https://git.mirrors.martin98.com/https://github.com/docker/setup-docker-action
synced 2025-04-18 12:09:46 +08:00
12 lines
182 B
TypeScript
12 lines
182 B
TypeScript
import * as core from '@actions/core';
|
|
|
|
export interface Inputs {
|
|
version: string;
|
|
}
|
|
|
|
export function getInputs(): Inputs {
|
|
return {
|
|
version: core.getInput('version')
|
|
};
|
|
}
|