Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 60914a1

Browse files
committed
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)
1 parent 7dcd62c commit 60914a1

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,10 @@ deploy:
8080
provider: releases
8181
api_key: $github_api_token
8282
file:
83-
- utPLSQL${UTPLSQL_BUILD_VERSION}.zip
84-
- utPLSQL${UTPLSQL_BUILD_VERSION}.tar.gz
83+
- utPLSQL.zip
84+
- utPLSQL.tar.gz
85+
- utPLSQL.zip.md5
86+
- utPLSQL.tar.gz.md5
8587
skip_cleanup: true
8688
on:
8789
repo: ${UTPLSQL_REPO}

.travis/build_release_archive.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ git commit -m "tmp commit for building a release archive"
1414

1515
git archive --prefix=utPLSQL/ -o utPLSQL.zip --format=zip HEAD
1616
git archive --prefix=utPLSQL/ -o utPLSQL.tar.gz --format=tar.gz HEAD
17-
17+
md5sum utPLSQL.zip --tag > utPLSQL.zip.md5
18+
md5sum utPLSQL.tar.gz --tag > utPLSQL.tar.gz.md5
1819

0 commit comments

Comments
 (0)