8000 Auto-deploy via Travis CI upon tagged commit to master (#480) · githubib/twilio-python@08898a4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 08898a4

Browse files
Auto-deploy via Travis CI upon tagged commit to master (twilio#480)
1 parent 3eb03f6 commit 08898a4

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.travis.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,16 @@ install:
1515
script:
1616
- make test
1717
deploy:
18-
provider: script
19-
script: make docker-build && make docker-push
20-
skip_cleanup: true
21-
on:
22-
tags: true
23-
python: "3.6"
18+
- provider: script
19+
script: make docker-build && make docker-push
20+
skip_cleanup: true
21+
on:
22+
tags: true
23+
python: "3.6"
24+
- provider: pypi
25+
user: "__token__"
26+
password:
27+
secure: $PYPI_TOKEN
28+
on:
29+
tags: true
30+
python: "3.6"

0 commit comments

Comments
 (0)
0