Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
parent
34efacd03b
commit
9f8cc93d45
2 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
2
run.ts
2
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",
|
||||
|
|
Loading…
Reference in a new issue