diff options
| author | bunnei <bunneidev@gmail.com> | 2019-10-23 15:52:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-23 15:52:37 -0400 |
| commit | 012d7f52337bae999abcc4943b45b8fe5ab5f7a3 (patch) | |
| tree | c0a69ca995dce8a46f7f4b549ced4a80e866888a /.ci/scripts/common | |
| parent | 6fe89acf0d4d0ba3126b596a74f10b56b0591627 (diff) | |
| parent | 5e553a6c267f4ab96a89833f1006ea27fd78b30a (diff) | |
Merge pull request #3022 from DarkLordZach/azure-folder-rename
ci: Add build name to archive root folder
Diffstat (limited to '.ci/scripts/common')
| -rw-r--r-- | .ci/scripts/common/post-upload.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.ci/scripts/common/post-upload.sh b/.ci/scripts/common/post-upload.sh index bb4e9d328..b80868635 100644 --- a/.ci/scripts/common/post-upload.sh +++ b/.ci/scripts/common/post-upload.sh @@ -1,12 +1,12 @@ #!/bin/bash -ex # Copy documentation -cp license.txt "$REV_NAME" -cp README.md "$REV_NAME" +cp license.txt "$DIR_NAME" +cp README.md "$DIR_NAME" -tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$REV_NAME" +tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$DIR_NAME" -mv "$REV_NAME" $RELEASE_NAME +mv "$DIR_NAME" $RELEASE_NAME 7z a "$REV_NAME.7z" $RELEASE_NAME |
