diff options
Diffstat (limited to '.ci/scripts/common/post-upload.sh')
| -rw-r--r-- | .ci/scripts/common/post-upload.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.ci/scripts/common/post-upload.sh b/.ci/scripts/common/post-upload.sh new file mode 100644 index 000000000..bb4e9d328 --- /dev/null +++ b/.ci/scripts/common/post-upload.sh | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | #!/bin/bash -ex | ||
| 2 | |||
| 3 | # Copy documentation | ||
| 4 | cp license.txt "$REV_NAME" | ||
| 5 | cp README.md "$REV_NAME" | ||
| 6 | |||
| 7 | tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$REV_NAME" | ||
| 8 | |||
| 9 | mv "$REV_NAME" $RELEASE_NAME | ||
| 10 | |||
| 11 | 7z a "$REV_NAME.7z" $RELEASE_NAME | ||
| 12 | |||
| 13 | # move the compiled archive into the artifacts directory to be uploaded by travis releases | ||
| 14 | mv "$ARCHIVE_NAME" artifacts/ | ||
| 15 | mv "$REV_NAME.7z" artifacts/ | ||