We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f289d commit ea84886Copy full SHA for ea84886
1 file changed
action.yml
@@ -92,8 +92,10 @@ runs:
92
93
- name: Is Windows
94
if: ${{ runner.os == 'Windows' }}
95
- run: pip install -r ${{ github.action_path }}\requirements.txt
96
- shell: PowerShell
+ run: |
+ pip install -r ${{ github.action_path }}\requirements.txt
97
+ echo "path_sep=" >> $GITHUB_ENV
98
+ shell: pwsh
99
100
- name: Is Posix
101
if: ${{ runner.os != 'Windows' }}
0 commit comments