Skip to content

Commit 5630287

Browse files
committed
Add travis-ci deployment settings
1 parent 72c2245 commit 5630287

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.travis.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
services:
3+
- docker
4+
5+
script:
6+
- ./build_exe.sh
7+
8+
deploy:
9+
- provider: pypi
10+
user: $PYPI_USERNAME
11+
password: $PYPI_PASSWORD
12+
on:
13+
tags: true
14+
15+
- provider: releases
16+
api_key: $GITHUB_OAUTH_TOKEN
17+
file_glob: true
18+
file: dist/pynetworktables2js*.zip
19+
skip_cleanup: true
20+
on:
21+
tags: true
22+
23+
notifications:
24+
webhooks:
25+
urls:
26+
- https://webhooks.gitter.im/e/2fb1c026e64fdd70d27b
27+
on_success: change
28+
on_failure: always
29+
on_start: never

0 commit comments

Comments
 (0)