add the same fix to conda build
Browse files
.github/workflows/build.yml
CHANGED
@@ -61,7 +61,6 @@ jobs:
|
|
61 |
if: runner.os != 'Windows'
|
62 |
run: pip install --find-links=${{github.workspace}} livermask-*.whl
|
63 |
|
64 |
-
|
65 |
- name: Test CLI
|
66 |
run: livermask --help
|
67 |
|
@@ -96,8 +95,15 @@ jobs:
|
|
96 |
name: "Python wheel"
|
97 |
|
98 |
- name: Install wheel
|
|
|
99 |
run: |
|
100 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
|
102 |
- name: Download test sample
|
103 |
run: |
|
|
|
61 |
if: runner.os != 'Windows'
|
62 |
run: pip install --find-links=${{github.workspace}} livermask-*.whl
|
63 |
|
|
|
64 |
- name: Test CLI
|
65 |
run: livermask --help
|
66 |
|
|
|
95 |
name: "Python wheel"
|
96 |
|
97 |
- name: Install wheel
|
98 |
+
if: runner.os == 'Windows'
|
99 |
run: |
|
100 |
+
$TARGET = Resolve-Path "${{github.workspace}}/livermask-*.whl" | Select -ExpandProperty Path
|
101 |
+
echo $TARGET
|
102 |
+
pip3 install --find-links=${{github.workspace}} $TARGET
|
103 |
+
|
104 |
+
- name: Install wheel
|
105 |
+
if: runner.os != 'Windows'
|
106 |
+
run: pip3 install --find-links=${{github.workspace}} livermask-*.whl
|
107 |
|
108 |
- name: Download test sample
|
109 |
run: |
|