Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aa134be + 7cf7725 commit dd2a492Copy full SHA for dd2a492
2 files changed
.travis.yml
@@ -80,8 +80,10 @@ deploy:
80
provider: releases
81
api_key: $github_api_token
82
file:
83
- - utPLSQL${UTPLSQL_BUILD_VERSION}.zip
84
- - utPLSQL${UTPLSQL_BUILD_VERSION}.tar.gz
+ - utPLSQL.zip
+ - utPLSQL.tar.gz
85
+ - utPLSQL.zip.md5
86
+ - utPLSQL.tar.gz.md5
87
skip_cleanup: true
88
on:
89
repo: ${UTPLSQL_REPO}
.travis/build_release_archive.sh
@@ -14,5 +14,6 @@ git commit -m "tmp commit for building a release archive"
14
15
git archive --prefix=utPLSQL/ -o utPLSQL.zip --format=zip HEAD
16
git archive --prefix=utPLSQL/ -o utPLSQL.tar.gz --format=tar.gz HEAD
17
-
+md5sum utPLSQL.zip --tag > utPLSQL.zip.md5
18
+md5sum utPLSQL.tar.gz --tag > utPLSQL.tar.gz.md5
19
0 commit comments