-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (88 loc) · 2.53 KB
/
pypi.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: Release
on:
# push:
# tags:
# - '*'
workflow_dispatch:
permissions:
contents: read
id-token: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Download wheels for Linux x86_64
uses: actions/download-artifact@v4
with:
name: wheels-linux-x86_64
path: dist
- name: Download wheels for Linux x86
uses: actions/download-artifact@v4
with:
name: wheels-linux-x86
path: dist
- name: Download wheels for Linux aarch64
uses: actions/download-artifact@v4
with:
name: wheels-linux-aarch64
path: dist
- name: Download wheels for Linux armv7
uses: actions/download-artifact@v4
with:
name: wheels-linux-armv7
path: dist
- name: Download wheels for Linux ppc64le
uses: actions/download-artifact@v4
with:
name: wheels-linux-ppc64le
path: dist
- name: Download wheels for musllinux x86_64
uses: actions/download-artifact@v4
with:
name: wheels-musllinux-x86_64
path: dist
- name: Download wheels for musllinux x86
uses: actions/download-artifact@v4
with:
name: wheels-musllinux-x86
path: dist
- name: Download wheels for musllinux aarch64
uses: actions/download-artifact@v4
with:
name: wheels-musllinux-aarch64
path: dist
- name: Download wheels for musllinux armv7
uses: actions/download-artifact@v4
with:
name: wheels-musllinux-armv7
path: dist
- name: Download wheels for Windows x64
uses: actions/download-artifact@v4
with:
name: wheels-windows-x64
path: dist
- name: Download wheels for Windows x86
uses: actions/download-artifact@v4
with:
name: wheels-windows-x86
path: dist
- name: Download wheels for macOS x86_64
uses: actions/download-artifact@v4
with:
name: wheels-macos-x86_64
path: dist
- name: Download wheels for macOS aarch64
uses: actions/download-artifact@v4
with:
name: wheels-macos-aarch64
path: dist
- name: Download sdist
uses: actions/download-artifact@v4
with:
name: wheels-sdist
path: dist
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
with:
command: upload
args: --non-interactive --skip-existing dist/*