Skip to content

Commit

Permalink
Fix Python CI build for musllinux
Browse files Browse the repository at this point in the history
  • Loading branch information
miikka committed Aug 6, 2024
1 parent 9533ec6 commit cebf5e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ 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:
Expand All @@ -229,7 +229,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheels-musllinux-${{ matrix.python-version }}
path: /io/dist/*.whl
path: dist/*.whl

# should-publish:
# name: Did version change
Expand Down

0 comments on commit cebf5e2

Please sign in to comment.