forked from xeroc/stakemachine
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
4 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,12 +14,10 @@ install: | |
script: | ||
- echo "@TODO - Running tests..." | ||
- pyinstaller --distpath dist/$TRAVIS_OS_NAME gui.spec | ||
- pyinstaller --distpath dist/$TRAVIS_OS_NAME cli.spec | ||
before_deploy: | ||
- git config --local user.name "Travis" | ||
- git config --local user.email "[email protected]" | ||
- git tag "$(date +'%Y%m%d%H%M%S')-$(git log --format=%h -1)" | ||
- tar -czvf dist/DEXBot-cli-$TRAVIS_OS_NAME-$TRAVIS_TAG.tar.gz dist/$TRAVIS_OS_NAME/DEXBot-cli | ||
- tar -czvf dist/DEXBot-gui-$TRAVIS_OS_NAME-$TRAVIS_TAG.tar.gz dist/$TRAVIS_OS_NAME/DEXBot-gui | ||
deploy: | ||
- provider: releases | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
APP_NAME = 'dexbot' | ||
VERSION = '0.5.9' | ||
VERSION = '0.5.10' | ||
AUTHOR = 'Codaone Oy' | ||
__version__ = VERSION |