From bfeee95329694734d3e6e41ed65ed730ae75451e Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 15 Mar 2021 16:01:49 +0100 Subject: [PATCH] Fix release path in CI push 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 7f50ed11f..856ea9aa6 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 _build/prod/rel mobilizon + tar czf ${APP_ASSET} -C release mobilizon 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}