This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -112,8 +112,8 @@ jobs:
112
112
set -e
113
113
# The --force option forces a replacement if the remote file already
114
114
# exists.
115
- ls wheelhouse/*.whl
116
- echo $PATH
115
+ echo uploading wheelhouse/*.whl
116
+ echo TOKEN starts with ${TOKEN:0:3}
117
117
anaconda -t $TOKEN upload --force -u $ANACONDA_ORG wheelhouse/*.whl
118
118
echo "PyPI-style index: https://pypi.anaconda.org/$ANACONDA_ORG/simple"
119
119
displayName: Upload to anaconda.org (only if secret token is retrieved)
Original file line number Diff line number Diff line change @@ -135,11 +135,13 @@ jobs:
135
135
# Secret variables need to mapped to env variables explicitly:
136
136
NUMPY_NIGHTLY_UPLOAD_TOKEN: $(NUMPY_NIGHTLY_UPLOAD_TOKEN)
137
137
NUMPY_STAGING_UPLOAD_TOKEN: $(NUMPY_STAGING_UPLOAD_TOKEN)
138
+
138
139
- bash : |
139
140
set -e
140
141
# The --force option forces a replacement if the remote file already
141
142
# exists.
142
- ls numpy/dist/numpy-*.whl
143
+ echo uploading numpy/dist/numpy-*.whl
144
+ echo TOKEN starts with ${TOKEN:0:3}
143
145
anaconda -t $TOKEN upload --force -u $ANACONDA_ORG numpy/dist/numpy-*.whl
144
146
echo "PyPI-style index: https://pypi.anaconda.org/$ANACONDA_ORG/simple"
145
147
displayName: Upload to anaconda.org (only if secret token is retrieved)
You can’t perform that action at this time.
0 commit comments