We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bd2e7d commit 52ed9b2Copy full SHA for 52ed9b2
1 file changed
.github/workflows/build.yml
@@ -125,11 +125,17 @@ jobs:
125
# version refers to the python version. So 3.8 -> 38
126
version=$(echo ${{ matrix.python-version }} | sed 's/\.//g')
127
128
+ if [[ "${{ matrix.os }}" == "windows-latest" ]]; then
129
+ chunk="windows"
130
+ else:
131
+ chunk="${{matrix.os}}"
132
+ fi
133
+
134
# this finds files like
135
# nlopt-2.6.2-cp36-cp36m-win_amd64.whl
136
# nlopt-2.6.2-cp36-cp36m-manylinux10_amd64.whl
137
# nlopt-2.7.1-cp310-cp310-win_amd64.whl
- file=$(find dist -name "nlopt-*${version}*${os}*.whl" -type f);
138
+ file=$(find dist/${chunk} -name "nlopt-*${version}*${os}*.whl" -type f);
139
140
echo "Installing file: ${file}"
141
0 commit comments