From c809feaf81d90df79ee22727b6f126d3f9dfc702 Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Fri, 24 Jul 2020 17:01:23 +0200 Subject: [PATCH] Store built apk as artifact --- .circleci/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 25eadeb45..093954036 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,6 +39,10 @@ workflows: - run: name: Build debug command: ./gradlew assembleDebug -PdisablePreDex + - store_artifacts: + name: Uploading apk artifact + path: app/build/outputs/apk/play/debug/app-play-debug.apk + destination: app-play-debug.apk - run: name: Execute debug unit tests command: ./gradlew :core:testPlayDebugUnitTest -PdisablePreDex