mirror of
https://github.com/docker/setup-docker-action.git
synced 2026-04-06 12:49:26 +00:00
initial implementation
This commit is contained in:
parent
dab70f21b3
commit
845a3c6c45
11 changed files with 3633 additions and 0 deletions
11
src/context.ts
Normal file
11
src/context.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import * as core from '@actions/core';
|
||||
|
||||
export interface Inputs {
|
||||
version: string;
|
||||
}
|
||||
|
||||
export function getInputs(): Inputs {
|
||||
return {
|
||||
version: core.getInput('version')
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue