@@ -147,12 +147,12 @@ jobs:
147147 mkdir tmp
148148 if [[ "${{ matrix.platform }}" == "win" ]]; then
149149 ARTIFACT_PATH="tmp"
150- cp extern/libzedmd/build/${{ matrix.type }}/* zedmd* .lib tmp || true
151- cp extern/libzedmd/build/${{ matrix.type }}/* zedmd* .dll tmp || true
150+ cp extern/libzedmd/build/${{ matrix.type }}/zedmd{64} .lib tmp || true
151+ cp extern/libzedmd/build/${{ matrix.type }}/zedmd{64} .dll tmp || true
152152 cp extern/libzedmd/build/${{ matrix.type }}/*serialport*.lib tmp || true
153153 cp extern/libzedmd/build/${{ matrix.type }}/*serialport*.dll tmp || true
154- cp build/*extending*.lib tmp || true
155- cp build/*extending*.dll tmp || true
154+ cp build/${{ matrix.type }}/ *extending*.lib tmp || true
155+ cp build/${{ matrix.type }}/ *extending*.dll tmp || true
156156 else
157157 ARTIFACT_PATH="libzedmd-python-pybind11-extension-${{ needs.version.outputs.tag }}-${{ matrix.platform }}-${{ matrix.arch }}.tar.gz"
158158 if [[ "${{ matrix.platform }}" == "macos" ]]; then
@@ -163,10 +163,10 @@ jobs:
163163 cp -a build/*extending*.dylib tmp || true
164164 elif [[ "${{ matrix.platform }}" == "linux" ]]; then
165165 cp extern/libzedmd/build/*zedmd*.a tmp || true
166- cp -a extern/libzedmd/build/*serialport*.{so,so.*} tmp || true
167- cp -a extern/libzedmd/build/*zedmd*.{so,so.*} tmp || true
166+ cp extern/libzedmd/build/*serialport*.{so,so.*} tmp || true
167+ cp extern/libzedmd/build/*zedmd*.{so,so.*} tmp || true
168168 cp build/*extending*.a tmp || true
169- cp -a build/*extending*.{so,so.*} tmp || true
169+ cp build/*extending*.{so,so.*} tmp || true
170170 fi
171171 cd tmp
172172 tar -czvf ../${ARTIFACT_PATH} *
0 commit comments