From 76b34f7d82b3d7abdc30d75390344eb3c18b6d3b Mon Sep 17 00:00:00 2001 From: JCW Date: Mon, 28 Jul 2025 14:00:05 +0100 Subject: [PATCH] Fix windows ENV:Path not found error --- .github/workflows/build-windows.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index a2b04eeeee..d19ddaa504 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -113,14 +113,13 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 -# - name: Check configuration -# shell: bash -# run: | -# echo "Checking path" -# $env:PATH -split ';' | Sort-Object -# -# echo "Checking environment variables." -# ls env: + - name: Check configuration + shell: pwsh + run: | + echo "Checking path" + $env:PATH -split ';' | Sort-Object + + echo "Checking environment variables." - name: choose Python uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 with: