andreped commited on
Commit
8de7832
1 Parent(s): e15d771

fixed typo

Browse files
Files changed (1) hide show
  1. .github/workflows/build.yml +2 -2
.github/workflows/build.yml CHANGED
@@ -51,13 +51,13 @@ jobs:
51
  name: "Python wheel"
52
 
53
  - name: Install wheel
54
- if: runner.os == "Windows"
55
  run: |
56
  $TARGET = Resolve-Path "${{github.workspace}}/livermask-*.whl" | Select -ExpandProperty Path &&
57
  pip install --find-links=${{github.workspace}} $TARGET
58
 
59
  - name: Install wheel
60
- if: runner.os != "Windows"
61
  run: pip install --find-links=${{github.workspace}} livermask-*.whl
62
 
63
 
 
51
  name: "Python wheel"
52
 
53
  - name: Install wheel
54
+ if: runner.os == 'Windows'
55
  run: |
56
  $TARGET = Resolve-Path "${{github.workspace}}/livermask-*.whl" | Select -ExpandProperty Path &&
57
  pip install --find-links=${{github.workspace}} $TARGET
58
 
59
  - name: Install wheel
60
+ if: runner.os != 'Windows'
61
  run: pip install --find-links=${{github.workspace}} livermask-*.whl
62
 
63