Skip to content

Commit 6ed1c1b

Browse files
committed
Fix exporting variables for Windows.
1 parent e16be69 commit 6ed1c1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,8 @@ jobs:
306306
- name: Setup default Build Type on Windows
307307
if: runner.os == 'windows'
308308
run: |
309-
echo "BUILD_TYPE=Release" >> $GITHUB_ENV
310-
echo "CODE_COVERAGE=0" >> $GITHUB_ENV
309+
echo "BUILD_TYPE=Release" >> $env:GITHUB_ENV
310+
echo "CODE_COVERAGE=0" >> $env:GITHUB_ENV
311311
echo "ncpus=%NUMBER_OF_PROCESSORS%"
312312
echo "ncpus=%NUMBER_OF_PROCESSORS%" >> $GITHUB_ENV
313313

0 commit comments

Comments
 (0)