From 3b2e12c625174fe0e4a89db04ad54f5b1222f775 Mon Sep 17 00:00:00 2001 From: Ramon Ziai Date: Mon, 16 Oct 2023 10:32:01 +0200 Subject: [PATCH] fix(action.yml): refer to action path when executing script --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b9d1c6f..f6cbcbf 100644 --- a/action.yml +++ b/action.yml @@ -37,7 +37,7 @@ runs: INPUT_RENAME: ${{ inputs.rename }} INPUT_REPO: ${{ inputs.repo }} INPUT_WAIT_SECONDS: ${{ inputs.wait_seconds }} - run: python main.py + run: python "${{ github.action_path }}/main.py" branding: color: 'yellow'