diff options
Diffstat (limited to '.ci/scripts/common/post-upload.sh')
| -rw-r--r-- | .ci/scripts/common/post-upload.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.ci/scripts/common/post-upload.sh b/.ci/scripts/common/post-upload.sh index a4e3070fd..7f910b2b3 100644 --- a/.ci/scripts/common/post-upload.sh +++ b/.ci/scripts/common/post-upload.sh | |||
| @@ -1,11 +1,14 @@ | |||
| 1 | #!/bin/bash -ex | 1 | #!/bin/bash -ex |
| 2 | 2 | ||
| 3 | # SPDX-FileCopyrightText: 2019 yuzu Emulator Project | ||
| 4 | # SPDX-License-Identifier: GPL-2.0-or-later | ||
| 5 | |||
| 3 | # Copy documentation | 6 | # Copy documentation |
| 4 | cp license.txt "$DIR_NAME" | 7 | cp LICENSE.txt "$DIR_NAME" |
| 5 | cp README.md "$DIR_NAME" | 8 | cp README.md "$DIR_NAME" |
| 6 | 9 | ||
| 7 | if [[ -z "${NO_SOURCE_PACK}" ]]; then | 10 | if [[ -z "${NO_SOURCE_PACK}" ]]; then |
| 8 | tar -cJvf "${REV_NAME}-source.tar.xz" src externals CMakeLists.txt README.md license.txt | 11 | tar -cJvf "${REV_NAME}-source.tar.xz" src externals CMakeLists.txt README.md LICENSE.txt |
| 9 | cp -v "${REV_NAME}-source.tar.xz" "$DIR_NAME" | 12 | cp -v "${REV_NAME}-source.tar.xz" "$DIR_NAME" |
| 10 | fi | 13 | fi |
| 11 | 14 | ||