From f09d15061fa1c1b7c266cd431c36e380442a3119 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Tue, 23 May 2023 20:13:53 +0000 Subject: [PATCH] fix: Point to Typescript transpiled action script The transpiled Typescript files are in a different directory than their Javascript counterparts. Fix the action metadata to reflect this. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 4247dd0..76af333 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,7 @@ inputs: default: ${{ github.token }} runs: using: "node16" - main: "dist/index.js" + main: "lib/src/main.js" branding: icon: "shuffle" color: "green"