diff options
author | James Rowe <jroweboy@gmail.com> | 2019-10-24 12:53:30 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-24 12:53:30 -0600 |
commit | 5ee4fb6e12c686d5ea513ca39ceaaad1830c1c10 (patch) | |
tree | 259446ffaf570b2bd2cc78c1b4615b0de6e1fb8d /.ci/scripts/common/post-upload.sh | |
parent | 5062728669108f5160f29d552e3cee64e88e4cf1 (diff) | |
parent | 969f0afa4e8da7d92462105ed34ccd6da87130d5 (diff) |
Merge pull request #3029 from jroweboy/revert
Revert "ci: Add build name to archive root folder"
Diffstat (limited to '.ci/scripts/common/post-upload.sh')
-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 b80868635..bb4e9d328 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 "$DIR_NAME" -cp README.md "$DIR_NAME" +cp license.txt "$REV_NAME" +cp README.md "$REV_NAME" -tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$DIR_NAME" +tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$REV_NAME" -mv "$DIR_NAME" $RELEASE_NAME +mv "$REV_NAME" $RELEASE_NAME 7z a "$REV_NAME.7z" $RELEASE_NAME |