workaround a GHA issue
ci / docker (push) Failing after 28s Details

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2024-03-27 21:51:32 +01:00
parent 1e61c6a087
commit 7de5d1e369
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
1 changed files with 6 additions and 1 deletions

7
run.ts
View File

@ -25,7 +25,12 @@ Deno.env.set(
),
);
let temp: string = getEnv("Project", true, "An entrypoint is required");
let temp = getEnv("ENTRY-POINT")
if (temp) {
Deno.env.set("ENTRYPOINT", temp);
}
temp = getEnv("Project", true, "An entrypoint is required");
const flags = [`-p=${temp}`];
temp = getEnv("EXCLUDE");