From 3ac18de3f36d15f5a8db6151d8ba75c557c10797 Mon Sep 17 00:00:00 2001
From: Igor Markin <igor.markin@vereign.com>
Date: Mon, 12 Aug 2019 11:14:17 +0000
Subject: [PATCH] Add APK artifact

---
 .gitlab-ci.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c9bc953..a7c029a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -5,9 +5,13 @@ build:
   variables: 
     LANG: en_US.UTF-8
   stage: build
+  artifacts:
+    paths:
+    - build-apk.tgz
   tags:
     - macos 
   script:
     - cp $HOME/key.properties ./android/key.properties
     - make build-android
+    - tar -czf build.tgz -C ./build/app/outputs/apk/development/release/app-development-release.apk  .
 
-- 
GitLab