commit 867fba0d72542e579fe943fdd81d996274bc8d83 parent bfb0ca3cd86b4340a083538dffcc7b405815f1ca Author: finwo <finwo@pm.me> Date: Tue, 17 Oct 2023 23:45:16 +0200 Use join-path instead of echo for windows Diffstat:
| M | action.yml | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/action.yml b/action.yml @@ -13,7 +13,7 @@ runs: - if: runner.os == 'Windows' shell: pwsh run: | - echo $env:GITHUB_ACTION_PATH + "\\dist" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + Join-Path $env:GITHUB_ACTION_PATH "dist" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - if: runner.os == 'Linux' shell: bash