From 006c624e657a420db12c29252be3dc677e8c444f Mon Sep 17 00:00:00 2001 From: Surferlul Date: Fri, 13 Oct 2023 19:22:31 +0200 Subject: [PATCH] added extra precaution relative path resolves correctly --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 5e0ed84..88402d8 100644 --- a/action.yml +++ b/action.yml @@ -14,6 +14,6 @@ runs: python-version: '3.12' # Optional - x64 or x86 architecture, defaults to x64 architecture: 'x64' - - run: python ${{ github.action_path }}/main.py "${{ github.workspace }}" "${{ inputs.home-md-file}}" + - run: python ${{ github.action_path }}/main.py "${{ github.workspace }}" "${{ github.workspace }}/${{ inputs.home-md-file}}" shell: bash