mirror of
https://github.com/docker/setup-docker-action.git
synced 2025-12-31 17:41:27 +01:00
context input
This commit is contained in:
@@ -3,11 +3,13 @@ import * as core from '@actions/core';
|
||||
export interface Inputs {
|
||||
version: string;
|
||||
channel: string;
|
||||
context: string;
|
||||
}
|
||||
|
||||
export function getInputs(): Inputs {
|
||||
return {
|
||||
version: core.getInput('version'),
|
||||
channel: core.getInput('channel')
|
||||
channel: core.getInput('channel'),
|
||||
context: core.getInput('context')
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user