Skip to content

Commit ea84886

Browse files
committed
bugfix
1 parent 31f289d commit ea84886

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,10 @@ runs:
9292

9393
- name: Is Windows
9494
if: ${{ runner.os == 'Windows' }}
95-
run: pip install -r ${{ github.action_path }}\requirements.txt
96-
shell: PowerShell
95+
run: |
96+
pip install -r ${{ github.action_path }}\requirements.txt
97+
echo "path_sep=" >> $GITHUB_ENV
98+
shell: pwsh
9799

98100
- name: Is Posix
99101
if: ${{ runner.os != 'Windows' }}

0 commit comments

Comments
 (0)