Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 133978f

Browse files
committed
Upload nighlighties to new location
1 parent ef56ed5 commit 133978f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/nightlies.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- name: Upload wheels to Anaconda Cloud as nightlies
7171
run: |
7272
anaconda --token ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} upload \
73-
--user scipy-wheels-nightly \
73+
--user scientific-python-nightly-wheels \
7474
--skip-existing \
7575
dist/matplotlib-*.whl
7676
@@ -82,13 +82,13 @@ jobs:
8282
# N.B.: `anaconda show` places the newest packages at the bottom of
8383
# the output of the 'Versions' section and package versions are
8484
# preceded with a ' + '.
85-
anaconda show scipy-wheels-nightly/matplotlib &> >(grep '+') | \
85+
anaconda show scientific-python-nightly-wheels/matplotlib &> >(grep '+') | \
8686
sed 's/.* + //' | \
8787
head --lines "-${N_LATEST_UPLOADS}" > remove-package-versions.txt
8888
8989
while LANG=C IFS= read -r package_version ; do
90-
echo "Removing scipy-wheels-nightly/matplotlib/${package_version}"
90+
echo "Removing scientific-python-nightly-wheels/matplotlib/${package_version}"
9191
anaconda --token ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} remove \
9292
--force \
93-
"scipy-wheels-nightly/matplotlib/${package_version}"
93+
"scientific-python-nightly-wheels/matplotlib/${package_version}"
9494
done <remove-package-versions.txt

0 commit comments

Comments
 (0)