Skip to content

Commit

Permalink
ci: fix python release (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wackyator authored Dec 20, 2023
1 parent 25ea070 commit e0bf037
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,6 @@ jobs:
arch: aarch64
- target: armv7-unknown-linux-gnueabihf
arch: armv7
- target: s390x-unknown-linux-gnu
arch: s390x
- target: powerpc64le-unknown-linux-gnu
arch: ppc64le
- target: powerpc64-unknown-linux-gnu
arch: ppc64

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -282,7 +276,7 @@ jobs:
options: -v ${{ github.workspace }}:/io -w /io
run: |
apk add py3-pip
pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links /io/py-rattler/dist/ --force-reinstall
pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links /io/py-rattler/dist/ --force-reinstall --break-system-packages
python3 -c "import rattler; print(rattler.__version__)"
- name: "Upload wheels"
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -326,7 +320,7 @@ jobs:
install: |
apk add py3-pip
run: |
pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links py-rattler/dist/ --force-reinstall
pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links py-rattler/dist/ --force-reinstall --break-system-packages
python3 -c "import rattler; print(rattler.__version__)"
- name: "Upload wheels"
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -443,7 +437,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: wheels
merge-multiple: true
path: wheels
- name: Publish to PyPi
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down

0 comments on commit e0bf037

Please sign in to comment.