From fc74e72152a885876b40345f9d4d372688a19003 Mon Sep 17 00:00:00 2001 From: dennisvang <29799340+dennisvang@users.noreply.github.com> Date: Wed, 29 Nov 2023 10:00:46 +0100 Subject: [PATCH] fix github workflow ifs even more --- .github/workflows/test-update-cycle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-update-cycle.yml b/.github/workflows/test-update-cycle.yml index a5adcd7..9ab98e3 100644 --- a/.github/workflows/test-update-cycle.yml +++ b/.github/workflows/test-update-cycle.yml @@ -41,10 +41,10 @@ jobs: run: $PSVersionTable # or $PSVersionTable.PSEdition # https://docs.github.com/en/actions/learn-github-actions/contexts#runner-context - name: specify app directories for Windows - if: runner.os == Windows + if: ${{ runner.os == "Windows" }} run: echo "Windows" # TEMP - name: specify app directories for macOS - if: runner.os == macOS + if: ${{ runner.os == "macOS" }} run: echo "macOS" # TEMP - name: add src to python path run: Add-Content -Path $Env:GITHUB_ENV -Value "PYTHONPATH=$Env:PYTHONPATH;.\src"