Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tovrstra committed Sep 1, 2017
1 parent 095f235 commit a08840c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,21 +117,21 @@ deploy:
prerelease: true
- provider: script
skip_cleanup: true
script: anaconda -t $ANACONDA_TOKEN upload -l --force alpha ${HOME}/miniconda/conda-bld/*/${PYPKG}-*.tar.bz2
script: anaconda -t $ANACONDA_TOKEN upload --force -l alpha ${HOME}/miniconda/conda-bld/*/${PYPKG}-*.tar.bz2
on:
repo: ${GITHUB_REPO_NAME}
tags: true
condition: "$TRAVIS_TAG == *a*"
- provider: script
skip_cleanup: true
script: anaconda -t $ANACONDA_TOKEN upload -l --force beta ${HOME}/miniconda/conda-bld/*/${PYPKG}-*.tar.bz2
script: anaconda -t $ANACONDA_TOKEN upload --force -l ${HOME}/miniconda/conda-bld/*/${PYPKG}-*.tar.bz2
on:
repo: ${GITHUB_REPO_NAME}
tags: true
condition: "$TRAVIS_TAG == *b*"
- provider: script
skip_cleanup: true
script: anaconda -t $ANACONDA_TOKEN upload -l --force main ${HOME}/miniconda/conda-bld/*/${PYPKG}-*.tar.bz2
script: anaconda -t $ANACONDA_TOKEN upload --force -l main ${HOME}/miniconda/conda-bld/*/${PYPKG}-*.tar.bz2
on:
repo: ${GITHUB_REPO_NAME}
tags: true
Expand Down

0 comments on commit a08840c

Please sign in to comment.