From 74c882cb1ed217f1fb46bb6533277b186f960e70 Mon Sep 17 00:00:00 2001 From: n3t1zen Date: Tue, 5 May 2026 23:28:39 +0800 Subject: [PATCH] optimize ci artifact location --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cd10d0f..d197f58 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -32,6 +32,7 @@ build-android: cd ../.. mkdir -p dist # prepare upload cp clients/android/app/build/outputs/apk/other/release/*arm64-v8a.apk dist + mv dist ../.. VERSION_CODE=$(grep VERSION_CODE clients/android/version.properties | cut -d= -f2) VERSION_NAME=$(grep VERSION_NAME clients/android/version.properties | cut -d= -f2) variables: @@ -44,4 +45,4 @@ build-android: artifacts: paths: - - "./works/core/dist" + - "./dist"