Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 4019920

Browse files
committed
fix env variables in powershell
1 parent 0e2c90f commit 4019920

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/validate-windows-binaries-gpu.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,6 @@ jobs:
9595
ENV_NAME: conda-env-${{ github.run_id }}
9696
run: |
9797
$ErrorActionPreference = 'Stop'
98-
conda create -yp ${ENV_NAME} python=${{ matrix.python_version }} numpy
99-
conda run -p ${ENV_NAME} $INSTALLATION
100-
conda run -p ${ENV_NAME} python3 ./test/smoke_test/smoke_test.py
98+
conda create -yp $env:ENV_NAME python=${{ matrix.python_version }} numpy
99+
conda run -p $env:ENV_NAME $env:INSTALLATION
100+
conda run -p $env:ENV_NAME python3 ./test/smoke_test/smoke_test.py

0 commit comments

Comments
 (0)