From 56e1bb6bfd828b365dd061caccdb572f2772ed4b Mon Sep 17 00:00:00 2001 From: TheOneWithTheBraid Date: Mon, 29 May 2023 19:19:28 +0200 Subject: [PATCH] fix: broken CI artifact uploads Signed-off-by: TheOneWithTheBraid --- .gitlab-ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 11e1def0..abbc7ab9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -359,13 +359,12 @@ upload_android: extends: .release script: - | - curl --fail-with-body --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file build/android/app-release.apk ${PACKAGE_REGISTRY_URL}/fluffychat.apk + curl --fail-with-body --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file build/app/outputs/apk/release/app-release.apk ${PACKAGE_REGISTRY_URL}/fluffychat.apk upload_web: extends: .release script: - # workaround bug of Flutter engine - - tar czf package.tar.gz --ignore-failed-read -C build/web/ . + - tar czf package.tar.gz -C build/web/ . - | curl --fail-with-body --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file package.tar.gz ${PACKAGE_REGISTRY_URL}/fluffychat-web.tar.gz