We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b4ef181 + bbcdf34 commit 7af404cCopy full SHA for 7af404c
2 files changed
.travis.yml
@@ -39,9 +39,15 @@ before_deploy:
39
- bash .travis/create_release.sh
40
41
deploy:
42
- provider: bintray
43
- file: bintray.json
44
- user: $BINTRAY_USER
45
- key: $BINTRAY_API_KEY
46
- dry-run: false
47
- on: develop
+ - provider: releases
+ api_key: $GITHUB_API_TOKEN
+ file: utPLSQL-cli.zip
+ skip_cleanup: true
+ on:
+ tags: true
48
+ - provider: bintray
49
+ file: bintray.json
50
+ user: $BINTRAY_USER
51
+ key: $BINTRAY_API_KEY
52
+ dry-run: false
53
+ 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