Rename endpoint

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2020-09-08 15:52:09 +02:00
parent 48948ec5e2
commit 583e11daec
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
6 changed files with 12 additions and 12 deletions

View file

@ -11,7 +11,7 @@ export interface Inputs {
buildkitdFlags: string;
install: boolean;
use: boolean;
context: string;
endpoint: string;
}
export async function getInputs(): Promise<Inputs> {
@ -24,7 +24,7 @@ export async function getInputs(): Promise<Inputs> {
'--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host',
install: /true/i.test(core.getInput('install')),
use: /true/i.test(core.getInput('use')),
context: core.getInput('context')
endpoint: core.getInput('endpoint')
};
}