From 9f8cc93d455dedf9836028cd955555133978f10a Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Thu, 28 Mar 2024 01:27:32 +0100 Subject: [PATCH] change - to _ Signed-off-by: Sam Therapy --- action.yaml | 2 +- run.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index 19650ad..41a49f2 100644 --- a/action.yaml +++ b/action.yaml @@ -11,7 +11,7 @@ inputs: project: description: 'The project name used to deploy' required: true - entry-point: + entry_point: description: 'The entrypoint file for the deployment' required: true exclude: diff --git a/run.ts b/run.ts index f3e0d39..79c6e3f 100755 --- a/run.ts +++ b/run.ts @@ -61,7 +61,7 @@ const command = new Deno.Command("deployctl", { args: [ "deploy", ...flags, - getEnv("ENTRY-POINT") || getEnv("ENTRYPOINT", true, "An entrypoint is required!!"), + getEnv("ENTRY_POINT") || getEnv("ENTRYPOINT", true, "An entrypoint is required!!"), ], stdout: "piped", stderr: "piped",