From 60914a1012eaf77cc00aaa25163060687138a32f Mon Sep 17 00:00:00 2001 From: Jacek Date: Wed, 14 Jun 2017 18:24:36 +0100 Subject: [PATCH] release wis now including md5 checksum for archives. - added .md5 files generation. - added .md5 files upload with release - fixed upload of archive files (was using bad/old names) --- .travis.yml | 6 ++++-- .travis/build_release_archive.sh | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7b11479e5..eb9147ea2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -80,8 +80,10 @@ deploy: provider: releases api_key: $github_api_token file: - - utPLSQL${UTPLSQL_BUILD_VERSION}.zip - - utPLSQL${UTPLSQL_BUILD_VERSION}.tar.gz + - utPLSQL.zip + - utPLSQL.tar.gz + - utPLSQL.zip.md5 + - utPLSQL.tar.gz.md5 skip_cleanup: true on: repo: ${UTPLSQL_REPO} diff --git a/.travis/build_release_archive.sh b/.travis/build_release_archive.sh index ecd54479a..afb176919 100644 --- a/.travis/build_release_archive.sh +++ b/.travis/build_release_archive.sh @@ -14,5 +14,6 @@ git commit -m "tmp commit for building a release archive" git archive --prefix=utPLSQL/ -o utPLSQL.zip --format=zip HEAD git archive --prefix=utPLSQL/ -o utPLSQL.tar.gz --format=tar.gz HEAD - +md5sum utPLSQL.zip --tag > utPLSQL.zip.md5 +md5sum utPLSQL.tar.gz --tag > utPLSQL.tar.gz.md5