Skip to content

Commit

Permalink
use powershell commands to set GITHUB_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
stlankes committed Nov 21, 2020
1 parent ff50a65 commit 353d180
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ jobs:
if: ${{ matrix.os == 'windows-latest' }}
- name: Set path to qemu/nasm (Windows)
run: |
echo "C:\Program Files\qemu" >> $GITHUB_PATH
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
if: ${{ matrix.os == 'windows-latest' }}
- name: Building dev version
run:
Expand Down

0 comments on commit 353d180

Please sign in to comment.