diff --git a/.github/workflows/publish-python.yml b/.github/workflows/publish-python.yml index abb6cce1..c0c0a059 100644 --- a/.github/workflows/publish-python.yml +++ b/.github/workflows/publish-python.yml @@ -213,23 +213,22 @@ jobs: with: target: x86_64-unknown-linux-musl manylinux: musllinux_1_2 - args: --release --interpreter python${{ matrix.python-version}} --out /io/dist -m pytrustfall/Cargo.toml + args: --release --interpreter python${{ matrix.python-version}} --out dist -m pytrustfall/Cargo.toml - name: Install built wheel uses: addnab/docker-run-action@v3 with: - image: alpine:latest + image: python:${{ matrix.python-version }}-alpine options: -v ${{ github.workspace }}:/io -w /io run: | - apk add py3-pip - pip3 install -U pip ls -alh /io/dist/ - pip3 install trustfall --no-index --find-links /io/dist/ --force-reinstall + pip install trustfall --no-index --find-links /io/dist/ --force-reinstall python3 -c "import trustfall" - name: Upload wheels uses: actions/upload-artifact@v4 with: name: wheels-musllinux-${{ matrix.python-version }} - path: /io/dist/*.whl + path: dist/*.whl + if-no-files-found: error # should-publish: # name: Did version change