We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 06f7bac + ae53e6b commit 0ceb187Copy full SHA for 0ceb187
1 file changed
.github/workflows/release.yml
@@ -23,11 +23,20 @@ jobs:
23
with:
24
submodules: true
25
26
+ - name: Set up QEMU
27
+ if: runner.os == 'Linux'
28
+ uses: docker/setup-qemu-action@v3
29
+ with:
30
+ platforms: all
31
+
32
- name: Build wheels
33
uses: pypa/cibuildwheel@v2.17.0
34
env:
35
CIBW_BUILD_VERBOSITY: 1
36
MAXMINDDB_REQUIRE_EXTENSION: 1
37
+ # configure cibuildwheel to build native archs ('auto'), and some
38
+ # emulated ones
39
+ CIBW_ARCHS_LINUX: auto aarch64
40
41
- uses: actions/upload-artifact@v4
42
0 commit comments