Skip to content

Commit

Permalink
Correct marathon jar package filename pattern
Browse files Browse the repository at this point in the history
The package does not necessarily have the prefix 'marathon-'.
  • Loading branch information
Dino Lukman committed Oct 26, 2018
1 parent e3cf845 commit c9db0d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ before_script: # the automated download fails sometimes
after_success:
- sbt coverageReport coveralls
before_deploy:
- export RELEASE_JAR_FILE=$(ls target/scala*/marathon-*.jar)
- export RELEASE_JAR_FILE=$(ls target/scala*/marathon*.jar)
- export VERSION=$(echo $TRAVIS_TAG | sed 's/^v//' )
- echo "deploying $RELEASE_PKG_FILE to GitHub releases"
- tar czvf marathon-$VERSION.tgz $RELEASE_JAR_FILE
Expand Down

0 comments on commit c9db0d3

Please sign in to comment.