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

Skip to content

Commit bfaa6eb

Browse files
authored
Merge pull request #25950 from jarrodmillman/nightlies
Upload nightlies to new location
2 parents 3fc25bb + 25a2553 commit bfaa6eb

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
@@ -71,7 +71,7 @@ jobs:
7171
- name: Upload wheels to Anaconda Cloud as nightlies
7272
run: |
7373
anaconda --token ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} upload \
74-
--user scipy-wheels-nightly \
74+
--user scientific-python-nightly-wheels \
7575
--skip-existing \
7676
dist/matplotlib-*.whl
7777
@@ -83,13 +83,13 @@ jobs:
8383
# N.B.: `anaconda show` places the newest packages at the bottom of
8484
# the output of the 'Versions' section and package versions are
8585
# preceded with a ' + '.
86-
anaconda show scipy-wheels-nightly/matplotlib &> >(grep '+') | \
86+
anaconda show scientific-python-nightly-wheels/matplotlib &> >(grep '+') | \
8787
sed 's/.* + //' | \
8888
head --lines "-${N_LATEST_UPLOADS}" > remove-package-versions.txt
8989
9090
while LANG=C IFS= read -r package_version ; do
91-
echo "Removing scipy-wheels-nightly/matplotlib/${package_version}"
91+
echo "Removing scientific-python-nightly-wheels/matplotlib/${package_version}"
9292
anaconda --token ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} remove \
9393
--force \
94-
"scipy-wheels-nightly/matplotlib/${package_version}"
94+
"scientific-python-nightly-wheels/matplotlib/${package_version}"
9595
done <remove-package-versions.txt

0 commit comments

Comments
 (0)