From b670f7769ebef5b8646c88ee81a8a7b2841aa908 Mon Sep 17 00:00:00 2001 From: Surferlul Date: Fri, 13 Oct 2023 19:18:37 +0200 Subject: [PATCH] fixed missing quotes in bash command --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index d244544..5e0ed84 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 }}" "${{ inputs.home-md-file}}" shell: bash