commit 9d27134aa83b74bfaf0d5ba3567b3a0f33d2bfdd parent 8d37766d97c31ba5ead72ed5d4675d70fab7a032 Author: finwo <finwo@pm.me> Date: Tue, 17 Oct 2023 23:35:25 +0200 Attempt adding realpath to the PATH instead of just relpath Diffstat:
| M | action.yml | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/action.yml b/action.yml @@ -8,12 +8,12 @@ runs: - if: runner.os == 'Linux' shell: bash run: | - echo "dist" >> $GITHUB_PATH + echo "${GITHUB_ACTION_PATH}/dist" >> $GITHUB_PATH - if: runner.os == 'Windows' shell: pwsh run: | - echo "dist" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + echo $env:GITHUB_ACTION_PATH + "\\dist" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - if: runner.os == 'Linux' shell: bash