We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff50a65 commit 353d180Copy full SHA for 353d180
.github/workflows/test.yml
@@ -61,8 +61,8 @@ jobs:
61
if: ${{ matrix.os == 'windows-latest' }}
62
- name: Set path to qemu/nasm (Windows)
63
run: |
64
- echo "C:\Program Files\qemu" >> $GITHUB_PATH
65
- echo "C:\Program Files\nasm" >> $GITHUB_PATH
+ echo "C:\Program Files\qemu" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
+ echo "C:\Program Files\nasm" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
66
67
- name: Building dev version
68
run:
0 commit comments