From 6ee58c19e5843a080ae5ea75b4648864062d7eb1 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 20 Mar 2025 17:11:03 +0100 Subject: [PATCH] ci/build: no need to list all the files that will go into the uploaded artifact Part-of: --- .gitlab-ci/prepare-artifacts-python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/prepare-artifacts-python.sh b/.gitlab-ci/prepare-artifacts-python.sh index ae318c53ace..30074ce28a7 100755 --- a/.gitlab-ci/prepare-artifacts-python.sh +++ b/.gitlab-ci/prepare-artifacts-python.sh @@ -52,7 +52,7 @@ cp -Rp .gitlab-ci/*.txt artifacts/ if [ -n "$S3_ARTIFACT_NAME" ]; then # Pass needed files to the test stage S3_ARTIFACT_TAR="$S3_ARTIFACT_NAME.tar.zst" - tar cv artifacts/ | zstd -o "${S3_ARTIFACT_TAR}" + tar c artifacts/ | zstd -o "${S3_ARTIFACT_TAR}" ci-fairy s3cp --token-file "${S3_JWT_FILE}" "${S3_ARTIFACT_TAR}" "https://${PIPELINE_ARTIFACTS_BASE}/${S3_ARTIFACT_TAR}" rm "${S3_ARTIFACT_TAR}" fi