diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-08-11 00:00:52 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-11 00:00:52 -0400 |
| commit | 72bf84411071b7d949f4670e40587743477d44ae (patch) | |
| tree | aa4b47b2be648d34b8121743f0d983c48aa11776 /.ci/scripts/common | |
| parent | 253e1e6941ee9998ec72d027f7e40141c52213ca (diff) | |
| parent | 050c7608225502662d495357d55327b42b3c7b33 (diff) | |
Merge pull request #8686 from lat9nq/graft-source
ci: Graft source when archiving
Diffstat (limited to '.ci/scripts/common')
| -rw-r--r-- | .ci/scripts/common/post-upload.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.ci/scripts/common/post-upload.sh b/.ci/scripts/common/post-upload.sh index 7f910b2b3..0930b7a7b 100644 --- a/.ci/scripts/common/post-upload.sh +++ b/.ci/scripts/common/post-upload.sh @@ -8,8 +8,10 @@ cp LICENSE.txt "$DIR_NAME" cp README.md "$DIR_NAME" if [[ -z "${NO_SOURCE_PACK}" ]]; then - tar -cJvf "${REV_NAME}-source.tar.xz" src externals CMakeLists.txt README.md LICENSE.txt + git clone --depth 1 file://$(readlink -e .) ${REV_NAME}-source + tar -cJvf "${REV_NAME}-source.tar.xz" ${REV_NAME}-source cp -v "${REV_NAME}-source.tar.xz" "$DIR_NAME" + cp -v "${REV_NAME}-source.tar.xz" "${ARTIFACTS_DIR}/" fi tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$DIR_NAME" |
