10000 Auto-deploy via Travis CI upon tagged commit to master by thinkingserious · Pull Request #480 · twilio/twilio-python · GitHub
[go: up one dir, main page]

Skip to content

Auto-deploy via Travis CI upon tagged commit to master #480

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 9, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Auto-publish to PyPi
  • Loading branch information
thinkingserious committed Oct 8, 2019
commit 7ce6739c2ff5372a4a0d6e3c8d07b183b4d8900b
19 changes: 13 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,16 @@ install:
script:
- make test
deploy:
provider: script
script: make docker-build && make docker-push
skip_cleanup: true
on:
tags: true
python: "3.6"
- provider: script
script: make docker-build && make docker-push
skip_cleanup: true
on:
tags: true
node: "3.6"
- provider: pypi
user: "__token__"
password:
secure: $PYPI_TOKEN
on:
tags: true
node: "3.6"
0