File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 30
30
target : ${{ matrix.target }}
31
31
args : --release --out dist --find-interpreter -F python
32
32
sccache : ' true'
33
- # manylinux: false
33
+ rust-toolchain : 1.74
34
34
35
35
- name : Upload wheels
36
36
uses : actions/upload-artifact@v3
69
69
with :
70
70
target : ${{ matrix.target }}
71
71
args : --release --out dist --find-interpreter -F python
72
- # sccache: 'true' # sscache seems to have broken on Windows on Github -- https://github.com/nyx-space/nyx/actions/runs/5156694943/jobs/9288035780
72
+ rust-toolchain : 1.74
73
73
- name : Upload wheels
74
74
uses : actions/upload-artifact@v3
75
75
with :
@@ -95,12 +95,17 @@ jobs:
95
95
- uses : actions/setup-python@v4
96
96
with :
97
97
python-version : " 3.11"
98
+
99
+ - name : Update cargo packages
100
+ run : cargo update
101
+
98
102
- name : Build wheels
99
103
uses : PyO3/maturin-action@v1
100
104
with :
101
105
target : ${{ matrix.target }}
102
106
args : --release --out dist --find-interpreter -F python
103
107
sccache : ' true'
108
+ rust-toolchain : 1.74
104
109
105
110
- name : Upload wheels
106
111
uses : actions/upload-artifact@v3
@@ -127,6 +132,7 @@ jobs:
127
132
with :
128
133
command : sdist
129
134
args : --out dist
135
+ rust-toolchain : 1.74
130
136
- name : Upload sdist
131
137
uses : actions/upload-artifact@v3
132
138
with :
@@ -136,7 +142,7 @@ jobs:
136
142
release :
137
143
name : Release
138
144
runs-on : ubuntu-latest
139
- if : ${{ startsWith( github.ref, 'refs/tags/') }}
145
+ if : github.ref_type == 'tag'
140
146
needs : [linux, windows, macos, sdist]
141
147
steps :
142
148
- uses : actions/download-artifact@v3
Original file line number Diff line number Diff line change @@ -158,9 +158,6 @@ jobs:
158
158
steps :
159
159
- name : Checkout sources
160
160
uses : actions/checkout@v3
161
-
162
- - name : release-plz
163
-
164
161
165
162
- name : Install stable toolchain
166
163
uses : dtolnay/rust-toolchain@master
You can’t perform that action at this time.
0 commit comments