From 1a93a55f960d5522539c3682f9ceb1d8062606ff Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Wed, 28 May 2025 21:15:33 +0800 Subject: [PATCH] gitlab-ci: Account for new product flavours Build and upload vanilla debug builds to keep existing behaviour Signed-off-by: Aayush Gupta --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7e0057434..1cb1e31be 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ variables: PACKAGE_VERSION: "continuous" - DEBUG_BINARY: "com.aurora.store.debug_${CI_COMMIT_SHORT_SHA}.apk" - DEBUG_BINARY_PATH: "app/build/outputs/apk/debug/app-debug.apk" + DEBUG_BINARY: "com.aurora.store.vanilla.debug_${CI_COMMIT_SHORT_SHA}.apk" + DEBUG_BINARY_PATH: "app/build/outputs/apk/vanilla/debug/app-vanilla-debug.apk" PACKAGE_REGISTRY_URL: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/debug/${PACKAGE_VERSION}" stages: @@ -9,11 +9,11 @@ stages: - upload - release -assembleDebug: +assembleVanillaDebug: stage: build image: theimpulson/gitlab-ci-android:latest script: - - './gradlew assembleDebug' + - './gradlew assembleVanillaDebug' artifacts: paths: - $DEBUG_BINARY_PATH