mirror of
https://github.com/docker/setup-docker-action.git
synced 2026-03-20 00:29:46 +00:00
channel support
This commit is contained in:
@@ -2,10 +2,12 @@ import * as core from '@actions/core';
|
||||
|
||||
export interface Inputs {
|
||||
version: string;
|
||||
channel: string;
|
||||
}
|
||||
|
||||
export function getInputs(): Inputs {
|
||||
return {
|
||||
version: core.getInput('version')
|
||||
version: core.getInput('version'),
|
||||
channel: core.getInput('channel')
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user