We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c03ee77 commit e4b90cfCopy full SHA for e4b90cf
.travis.yml
@@ -100,3 +100,4 @@ deploy:
100
on:
101
condition: '$DEPLOY_CONDA == true'
102
all_branches: true
103
+ tags: true
ci/deploy_anaconda.sh
@@ -1,2 +1,3 @@
1
#!/bin/bash
2
-anaconda -t $CONDA_REPO_TOKEN upload -l $TRAVIS_BRANCH --force "$(ls $HOME/miniconda/conda-bld/${TRAVIS_OS_NAME}-64/*.tar.bz2)"
+if [[ $TRAVIS_TAG == "" ]]; then LABEL="-l $TRAVIS_BRANCH"; fi
3
+anaconda -t $CONDA_REPO_TOKEN upload $LABEL --force "$(ls $HOME/miniconda/conda-bld/${TRAVIS_OS_NAME}-64/*.tar.bz2)"
0 commit comments