From 22d924c5232b44479d51c839ed348f73ba8e4a65 Mon Sep 17 00:00:00 2001 From: Surferlul Date: Tue, 10 Oct 2023 04:17:09 +0200 Subject: [PATCH] fixed script path --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 48a61da..27c3482 100644 --- a/action.yml +++ b/action.yml @@ -12,6 +12,6 @@ runs: python-version: '3.12' # Optional - x64 or x86 architecture, defaults to x64 architecture: 'x64' - - run: python main.py ${{ github.workspace }} + - run: python ${{ github.action_path }}/main.py ${{ github.workspace }} shell: bash