From a07f7523c00a3d1e978ce27a2621e53e5833eda3 Mon Sep 17 00:00:00 2001 From: Conor Sloan Date: Tue, 6 Feb 2024 16:16:25 +0000 Subject: [PATCH] quote the path when calling npm to avoid backslash issues --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 81efe68..872bb70 100644 --- a/action.yml +++ b/action.yml @@ -21,7 +21,7 @@ runs: using: 'composite' steps: - name: Publish Action Package - run: 'npm --prefix ${{github.action_path}} start' + run: 'npm --prefix "${{github.action_path}}" start' shell: bash id: publish env: