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.
2 parents 4f5986d + d95eb37 commit de2d409Copy full SHA for de2d409
.github/workflows/publish.yml
@@ -39,6 +39,29 @@ jobs:
39
name: wheels
40
path: dist
41
42
+ alpine:
43
+ runs-on: ubuntu-latest
44
+ strategy:
45
+ matrix:
46
+ target: [x86_64, x86, aarch64, armv7]
47
+ steps:
48
+ - uses: actions/checkout@v3
49
+ - uses: actions/setup-python@v4
50
+ with:
51
+ python-version: '3.10'
52
+ - name: Build wheels
53
+ uses: PyO3/maturin-action@v1
54
55
+ target: ${{ matrix.target }}
56
+ args: --release --out dist --find-interpreter
57
+ sccache: 'true'
58
+ manylinux: musllinux_1_2
59
+ - name: Upload wheels
60
+ uses: actions/upload-artifact@v3
61
62
+ name: wheels
63
+ path: dist
64
+
65
windows:
66
runs-on: windows-latest
67
strategy:
0 commit comments