From 2a374807a0a1e6165a4cecc94cf726431af5e344 Mon Sep 17 00:00:00 2001 From: seslly <161339320+seslly@users.noreply.github.com> Date: Tue, 19 Mar 2024 14:34:31 -0700 Subject: [PATCH] fix: image expressions not supported (#6) https://github.com/orgs/community/discussions/26382 --- action.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/action.yml b/action.yml index acef91d..9bc7316 100644 --- a/action.yml +++ b/action.yml @@ -13,10 +13,6 @@ inputs: eks_cluster: description: "Name of your EKS cluster (i.e., from `eksctl get cluster`)" required: true - image: - description: "Optionally use a pre-built image to save build time" - required: false - default: "Dockerfile" verbose: description: "Enables shell command tracing. Takes string input 'true' or 'false'. Defaults to false." required: false @@ -26,6 +22,6 @@ outputs: description: "Output returned by your Helm or kubectl command" runs: using: "docker" - image: ${{ inputs.image }} + image: "Dockerfile" args: - ${{ inputs.command }}