Skip to content

Commit 353d180

Browse files
committed
use powershell commands to set GITHUB_PATH
1 parent ff50a65 commit 353d180

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ jobs:
6161
if: ${{ matrix.os == 'windows-latest' }}
6262
- name: Set path to qemu/nasm (Windows)
6363
run: |
64-
echo "C:\Program Files\qemu" >> $GITHUB_PATH
65-
echo "C:\Program Files\nasm" >> $GITHUB_PATH
64+
echo "C:\Program Files\qemu" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
65+
echo "C:\Program Files\nasm" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
6666
if: ${{ matrix.os == 'windows-latest' }}
6767
- name: Building dev version
6868
run:

0 commit comments

Comments
 (0)