From 328bf69f009601a89e184206f30ec7972dbda76a Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 29 Jun 2026 13:50:07 -0500 Subject: [PATCH 1/2] remove --skip-existing from upload tools --- tools/rapids-upload-to-anaconda-github | 1 - tools/rapids-wheels-anaconda-github | 1 - 2 files changed, 2 deletions(-) diff --git a/tools/rapids-upload-to-anaconda-github b/tools/rapids-upload-to-anaconda-github index 1fc68f7..065a5c5 100755 --- a/tools/rapids-upload-to-anaconda-github +++ b/tools/rapids-upload-to-anaconda-github @@ -53,7 +53,6 @@ for artifact_dir in "${unzip_dest}"/*/; do -t "${RAPIDS_CONDA_TOKEN}" \ upload \ --label "${RAPIDS_CONDA_UPLOAD_LABEL:-main}" \ - --skip-existing \ --no-progress \ ${PKGS_TO_UPLOAD} diff --git a/tools/rapids-wheels-anaconda-github b/tools/rapids-wheels-anaconda-github index 2a38308..8a057e7 100755 --- a/tools/rapids-wheels-anaconda-github +++ b/tools/rapids-wheels-anaconda-github @@ -74,7 +74,6 @@ export RAPIDS_RETRY_SLEEP=180 rapids-retry anaconda \ -t "${RAPIDS_CONDA_TOKEN}" \ upload \ - --skip-existing \ --no-progress \ "${files_to_upload[@]}" From a9ea41cb4f627904e97e4900969709a81cf85260 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 29 Jun 2026 14:17:49 -0500 Subject: [PATCH 2/2] --force too --- tools/rapids-upload-to-anaconda-github | 1 + tools/rapids-wheels-anaconda-github | 1 + 2 files changed, 2 insertions(+) diff --git a/tools/rapids-upload-to-anaconda-github b/tools/rapids-upload-to-anaconda-github index 065a5c5..2678f07 100755 --- a/tools/rapids-upload-to-anaconda-github +++ b/tools/rapids-upload-to-anaconda-github @@ -52,6 +52,7 @@ for artifact_dir in "${unzip_dest}"/*/; do rapids-retry anaconda \ -t "${RAPIDS_CONDA_TOKEN}" \ upload \ + --force \ --label "${RAPIDS_CONDA_UPLOAD_LABEL:-main}" \ --no-progress \ ${PKGS_TO_UPLOAD} diff --git a/tools/rapids-wheels-anaconda-github b/tools/rapids-wheels-anaconda-github index 8a057e7..de4f117 100755 --- a/tools/rapids-wheels-anaconda-github +++ b/tools/rapids-wheels-anaconda-github @@ -74,6 +74,7 @@ export RAPIDS_RETRY_SLEEP=180 rapids-retry anaconda \ -t "${RAPIDS_CONDA_TOKEN}" \ upload \ + --force \ --no-progress \ "${files_to_upload[@]}"