diff options
author | James Rowe <jroweboy@gmail.com> | 2017-07-29 03:34:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-29 03:34:43 +0200 |
commit | fc43e027f6c61590e45a7c947585b6875198f16c (patch) | |
tree | 7a41ac117993c16073a17dfbabb18f396bde8a16 /.travis-upload.sh | |
parent | Merge pull request #2679 from MerryMage/interp-tests (diff) | |
parent | Produce 7zip artifacts on Travis and Appveyor (diff) | |
download | yuzu-fc43e027f6c61590e45a7c947585b6875198f16c.tar yuzu-fc43e027f6c61590e45a7c947585b6875198f16c.tar.gz yuzu-fc43e027f6c61590e45a7c947585b6875198f16c.tar.bz2 yuzu-fc43e027f6c61590e45a7c947585b6875198f16c.tar.lz yuzu-fc43e027f6c61590e45a7c947585b6875198f16c.tar.xz yuzu-fc43e027f6c61590e45a7c947585b6875198f16c.tar.zst yuzu-fc43e027f6c61590e45a7c947585b6875198f16c.zip |
Diffstat (limited to '.travis-upload.sh')
-rwxr-xr-x | .travis-upload.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis-upload.sh b/.travis-upload.sh index 2cc968298..8cfab31cb 100755 --- a/.travis-upload.sh +++ b/.travis-upload.sh @@ -124,6 +124,11 @@ EOL tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$REV_NAME" + mv "$REV_NAME" nightly + + 7z a "$REV_NAME.7z" nightly + # move the compiled archive into the artifacts directory to be uploaded by travis releases mv "$ARCHIVE_NAME" artifacts/ + mv "$REV_NAME.7z" artifacts/ fi |