quote the path when calling npm to avoid backslash issues

This commit is contained in:
Conor Sloan
2024-02-06 16:16:25 +00:00
parent 3f76c4d47c
commit a07f7523c0
+1 -1
View File
@@ -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: