mirror of
https://github.com/docker/setup-compose-action.git
synced 2026-07-09 20:30:49 +02:00
initial version
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import * as core from '@actions/core';
|
||||
|
||||
export interface Inputs {
|
||||
version: string;
|
||||
cacheBinary: boolean;
|
||||
}
|
||||
|
||||
export async function getInputs(): Promise<Inputs> {
|
||||
return {
|
||||
version: core.getInput('version'),
|
||||
cacheBinary: core.getBooleanInput('cache-binary')
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user