Skip to content

Commit

Permalink
fix github workflow ifs
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisvang committed Nov 29, 2023
1 parent 65b3ea1 commit 33c062f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-update-cycle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 33c062f

Please sign in to comment.