From 2cc0b4ac7842f075fbef28b202d8530256273129 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 15 Mar 2021 17:06:51 +0100 Subject: [PATCH] Fix upload release tar archive generation Signed-off-by: Thomas Citharel --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 856ea9aa6..3666466ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -243,7 +243,7 @@ release-upload: APP_ASSET="${CI_PROJECT_NAME}_${APP_VERSION}_${ARCH}.tar.gz" echo "Artifact: ${APP_ASSET}" - tar czf ${APP_ASSET} -C release mobilizon + tar czf ${APP_ASSET} -C release . ls -al ${APP_ASSET} curl --silent --show-error --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file "${APP_ASSET}" ${PACKAGE_REGISTRY_URL}/${APP_VERSION}/${APP_ASSET}