File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -164,8 +164,6 @@ jobs:
164
164
name : Publish on PyPI
165
165
needs : [make_sdist,build_wheels]
166
166
runs-on : ubuntu-latest
167
- # release on every tag
168
- if : github.event_name == 'release' && startsWith(github.ref, 'refs/tags/')
169
167
steps :
170
168
- uses : actions/download-artifact@v4
171
169
with :
@@ -193,9 +191,18 @@ jobs:
193
191
path : dist
194
192
195
193
- name : Upload Wheels to PyPI
194
+ # release on every tag
195
+ if : github.event_name == 'release' && startsWith(github.ref, 'refs/tags/')
196
196
uses : pypa/gh-action-pypi-publish@release/v1
197
197
with :
198
198
user : __token__
199
199
password : ${{ secrets.PYPI_API_TOKEN }}
200
200
skip_existing : true
201
201
# repository_url: https://test.pypi.org/legacy/ # To test
202
+
203
+
204
+ - name : Upload Nightly Wheels
205
+ uses : scientific-python/upload-nightly-action@b67d7fcc0396e1128a474d1ab2b48aa94680f9fc
206
+ with :
207
+ artifacts_path : dist
208
+ anaconda_nightly_upload_token : ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }}
You can’t perform that action at this time.
0 commit comments