Skip to content
Snippets Groups Projects
Commit f31d19db authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Fix deployment script

parent 4e2ae904
No related branches found
No related tags found
1 merge request!63Conda package based CI
......@@ -5,7 +5,7 @@ source $(dirname ${0})/functions.sh
# Uploads all the built packages
for os in "osx-64" "noarch" "linux-64"; do
for f in ${CONDA_ENVS_PATH}/${os}/*.tar.bz2; do
for f in ${CONDA_ROOT}/conda-bld/${os}/*.tar.bz2; do
if [[ -f $f ]]; then
if [ -z "${CI_COMMIT_TAG}" ]; then #beta
dav_upload "${f}" "private-upload/conda/${os}/"
......@@ -21,12 +21,3 @@ done
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment