Skip to content
Snippets Groups Projects
Commit 60d830ad authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Do not delete old betas since they might be in use.

parent df11ee89
Branches
No related tags found
1 merge request!63Conda package based CI
......@@ -23,11 +23,11 @@ for folder in "${DOC_UPLOADS[@]}"; do
dav_upload_folder sphinx "${folder}"
done
# Deletes all the old packages if in beta
if [ -z "${CI_COMMIT_TAG}" ]; then #beta
for urls in _ci/*/*/build_number.txt; do
for url in `tail -n +2 $urls`; do
dav_delete "private-upload/conda${url}"
done
done
fi
# # Deletes all the old packages if in beta
# if [ -z "${CI_COMMIT_TAG}" ]; then #beta
# for urls in _ci/*/*/build_number.txt; do
# for url in `tail -n +2 $urls`; do
# dav_delete "private-upload/conda${url}"
# done
# done
# fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment