We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 872f46a commit d88ded6Copy full SHA for d88ded6
.github/workflows/pypi.yml
@@ -2,6 +2,7 @@ name: Upload to PyPI
2
3
on:
4
push:
5
+ branches-ignore: [master]
6
tags: ["v*"]
7
8
jobs:
@@ -49,7 +50,8 @@ jobs:
49
50
CIBW_ARCHS: ${{matrix.cibw_arch}}
51
CIBW_SKIP: "*-musllinux_aarch64"
52
# FIXME: stop skipping when the tests stop crashing
- CIBW_TEST_SKIP: "*-win_* *linux_aarch64"
53
+ CIBW_TEST_SKIP: "*-win_*"
54
+ CIBW_MANYLINUX_AARCH64_IMAGE: quay.io/pypa/manylinux_2_28_aarch64:2025.07.20-2
55
- name: Upload wheels
56
uses: actions/upload-artifact@v4
57
with:
@@ -58,6 +60,7 @@ jobs:
58
60
retention-days: 2
59
61
62
release:
63
+ if: github.ref_type == 'tag'
64
runs-on: ubuntu-latest
65
needs: [build-sdist, build-wheels]
66
steps:
0 commit comments