diff --git a/.github/workflows/python-packaging.yml b/.github/workflows/python-packaging.yml index 2858f92e74..6bf03b5c90 100644 --- a/.github/workflows/python-packaging.yml +++ b/.github/workflows/python-packaging.yml @@ -133,10 +133,16 @@ jobs: - name: Install wheel run: | set -x + echo ls -lR + echo ls -lR wheels-* + echo echo matrix.platform: ${{ matrix.platform }} echo matrix.arch: ${{ matrix.arch }} + # This bit is crucial since it's used to match up to a component of the wheel-file name + python -c 'from distutils import util; print(util.get_platform())' + echo WHL=$(find . -name 'tiledbsoma-*-cp311-cp311-*${{ matrix.platform }}*_${{ matrix.arch }}.whl') if [ -z "$WHL" ]; then echo "No wheel found"; exit 1; fi unzip -l $WHL