From 33c062ff668c54b059e58926e7ffbf6089b83496 Mon Sep 17 00:00:00 2001 From: dennisvang <29799340+dennisvang@users.noreply.github.com> Date: Wed, 29 Nov 2023 09:55:20 +0100 Subject: [PATCH] fix github workflow ifs --- .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 92c0aac..5b751ad 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"