This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new f8f8241 fix(ci): don't fail Anaconda upload when packages already
exist (#398)
f8f8241 is described below
commit f8f82418a73108259fcac0b829b03675de15f5a1
Author: David Li <[email protected]>
AuthorDate: Thu Jan 26 09:18:21 2023 -0500
fix(ci): don't fail Anaconda upload when packages already exist (#398)
Fixes #397.
---
ci/scripts/python_conda_upload.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/ci/scripts/python_conda_upload.sh
b/ci/scripts/python_conda_upload.sh
index c8ac293..70bf91a 100755
--- a/ci/scripts/python_conda_upload.sh
+++ b/ci/scripts/python_conda_upload.sh
@@ -26,6 +26,7 @@ set -x
main() {
anaconda -t "${ANACONDA_API_TOKEN}" \
upload \
+ --skip-existing \
--user "${CHANNEL}" \
"$@"
}