From 6dbfd3e120a2a2c8457fb960e26d65cfcfa62f6d Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Tue, 29 Oct 2024 22:05:05 +1300 Subject: [PATCH] fix: action not running --- Dockerfile | 2 ++ action.yml | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0153ecb..4ab4097 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,4 +3,6 @@ FROM cybercinch/base-alpine-bash:latest COPY scripts/docker-entrypoint.sh /entrypoint.sh ENV upload_file=build/Package.zip +ENV overwrite_files=false + CMD ["/entrypoint.sh"] \ No newline at end of file diff --git a/action.yml b/action.yml index 9f3bdce..6a23330 100644 --- a/action.yml +++ b/action.yml @@ -19,11 +19,9 @@ inputs: overwrite_files: description: "Overwrite package if already exists" required: false - default: "false" upload_file: description: "The file path to upload" required: false - default: "build/Pacakge.zip" runs: using: "docker" image: "Dockerfile"