Skip to content

Commit 76962c3

Browse files
author
stsdc
committed
use travis global var to name zip package 😫
1 parent 1b6a1be commit 76962c3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

β€Ž.travis.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ script:
2121
- pip3 install -r requirements.txt
2222
- yarn install
2323
- npm run build
24-
- zip -r tcs-$(./turtle -v).zip . -x node_modules/\* .git/\* .cache/\*
24+
- zip -r tcs-$TRAVIS_TAG.zip . -x node_modules/\* .git/\* .cache/\*
2525

2626
deploy:
2727
provider: releases

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tcs",
3-
"version": "0.11.5",
3+
"version": "0.11.6",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

β€Žserver/version.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = (0, 11, 5)
1+
version = (0, 11, 6)
22
version_info = '.'.join(str(c) for c in version)

0 commit comments

Comments
Β (0)