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