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

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
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)
  • Loading branch information
jgebal committed Jun 14, 2017
commit 60914a1012eaf77cc00aaa25163060687138a32f
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
3 changes: 2 additions & 1 deletion .travis/build_release_archive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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