Skip to content

Commit 0786c75

Browse files
committed
Try env vars for Windows
1 parent bd4f54f commit 0786c75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
echo "::group::Build wheel"
2-
pip wheel -w ${WHEEL_SDIR} --no-deps ${REPO_DIR}
3-
ls -l "${GITHUB_WORKSPACE}/${WHEEL_SDIR}/"
2+
pip wheel -w "${env:WHEEL_SDIR}" --no-deps "${env:REPO_DIR}"
3+
ls -l "${env:GITHUB_WORKSPACE}/${env:WHEEL_SDIR}/"
44
echo "::endgroup::"
55

66
echo "::group::Install wheel"

0 commit comments

Comments
 (0)