We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 194525b + bbcdf34 commit 2d66cdeCopy full SHA for 2d66cde
2 files changed
.travis.yml
@@ -26,9 +26,15 @@ before_deploy:
26
- bash .travis/create_release.sh
27
28
deploy:
29
- provider: bintray
30
- file: bintray.json
31
- user: $BINTRAY_USER
32
- key: $BINTRAY_API_KEY
33
- dry-run: false
34
- on: develop
+ - provider: releases
+ api_key: $GITHUB_API_TOKEN
+ file: utPLSQL-cli.zip
+ skip_cleanup: true
+ on:
+ tags: true
35
+ - provider: bintray
36
+ file: bintray.json
37
+ user: $BINTRAY_USER
38
+ key: $BINTRAY_API_KEY
39
+ dry-run: false
40
+ on: develop
.travis/create_release.sh
@@ -6,6 +6,7 @@ VERSION=`date +%Y%m%d%H%M`
6
mkdir dist
7
mv target/appassembler utPLSQL-cli
8
zip -r -q dist/utPLSQL-cli-${TRAVIS_BRANCH}-${VERSION}.zip utPLSQL-cli
9
+zip -r -q utPLSQL-cli.zip utPLSQL-cli
10
11
cat > bintray.json <<EOF
12
{
0 commit comments