Skip to content

Commit da7fce8

Browse files
authored
Merge pull request #8 from reecetech/debug-branch
Fix path env variable for windows runners
2 parents 7b86495 + 1a3c53c commit da7fce8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ runs:
5656
CHECKOUT: ${{ inputs.checkout }}
5757
DIRECTION: ${{ inputs.direction }}
5858
NAME: ${{ inputs.name }}
59-
PATH: ${{ inputs.path }}
59+
DIR_PATH: ${{ inputs.path }}
6060
LFS: ${{ inputs.checkout-lfs }}
6161
run: |
6262
set -euo pipefail
@@ -87,8 +87,8 @@ runs:
8787
fi
8888
fi
8989
90-
if [[ -n "${PATH:-}" ]] ; then
91-
echo "::set-output name=path::${PATH}"
90+
if [[ -n "${DIR_PATH:-}" ]] ; then
91+
echo "::set-output name=path::${DIR_PATH}"
9292
else
9393
if [[ "${CHECKOUT}" == 'true' ]] ; then
9494
echo "::set-output name=path::./.git/"

0 commit comments

Comments
 (0)