Deploy from "v.*" tag and all branches (#212)

pull/214/head^2
Simon Massey 6 years ago committed by GitHub
parent 4c0b2d867a
commit ece047890c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -97,8 +97,9 @@ deploy:
- provider: bintray
skip_cleanup: true
on:
branch: master
condition: "$GITSECRET_DIST == deb"
all_branches: true
tag: true
condition: "$TRAVIS_TAG =~ ^v.*$ && $GITSECRET_DIST == deb"
file: "build/deb_descriptor.json"
user: "sobolevn"
key: "$BINTRAY_API_KEY"
@ -106,8 +107,9 @@ deploy:
- provider: bintray
skip_cleanup: true
on:
branch: master
condition: "$GITSECRET_DIST == rpm"
all_branches: true
tag: true
condition: "$TRAVIS_TAG =~ ^v.*$ && $GITSECRET_DIST == rpm"
file: "build/rpm_descriptor.json"
user: "sobolevn"
key: "$BINTRAY_API_KEY"

Loading…
Cancel
Save