Skip to content

Commit

Permalink
Fix using %GITHUB_ENV% when windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mario4tier committed Nov 20, 2024
1 parent 00fb67b commit 1d2bbd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev-nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe" -latest -products * -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\MSBuild.exe > msbuild_path.txt
set /p MSBUILD_PATH=<msbuild_path.txt
echo VCVARSALL="%MSBUILD_PATH%\..\..\..\..\VC\Auxiliary\Build\vcvarsall.bat" >> $GITHUB_ENV
echo PYTHON="python" >> $GITHUB_ENV
echo VCVARSALL="%MSBUILD_PATH%\..\..\..\..\VC\Auxiliary\Build\vcvarsall.bat" >> %GITHUB_ENV%
echo PYTHON=python >> %GITHUB_ENV%
- name: Build dist assets (Linux)
if: runner.os == 'Linux'
Expand Down

0 comments on commit 1d2bbd3

Please sign in to comment.