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 92c1131 commit b5a2fedCopy full SHA for b5a2fed
.travis.yml
@@ -58,6 +58,12 @@ deploy:
58
# create a source distribution and a pure python wheel for faster installs
59
distributions: "sdist bdist_wheel"
60
61
- # only deploy on tagged commits (aka GitHub releases)
+ # only deploy on tagged commits (aka GitHub releases) on the master branch
62
+ # and only for the builds running Python 2.7 along with dev MongoEngine (we
63
+ # run Travis against many different Python and MongoEngine versions and we
64
+ # don't want the deploy to occur multiple times).
65
on:
66
+ branch: master
67
tags: true
68
+ condition: "$MONGOENGINE = dev"
69
+ python: 2.7
0 commit comments