Skip to content

Commit

Permalink
use travis global var to name zip package 😫
Browse files Browse the repository at this point in the history
  • Loading branch information
stsdc committed Jul 30, 2018
1 parent 1b6a1be commit 76962c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ script:
- pip3 install -r requirements.txt
- yarn install
- npm run build
- zip -r tcs-$(./turtle -v).zip . -x node_modules/\* .git/\* .cache/\*
- zip -r tcs-$TRAVIS_TAG.zip . -x node_modules/\* .git/\* .cache/\*

deploy:
provider: releases
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tcs",
"version": "0.11.5",
"version": "0.11.6",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion server/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = (0, 11, 5)
version = (0, 11, 6)
version_info = '.'.join(str(c) for c in version)

0 comments on commit 76962c3

Please sign in to comment.