diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5819f343..4db92eb7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -60,3 +60,17 @@ build: artifacts: paths: - app/build/outputs/ + +build_release: + image: "0xacab.org:4567/leap/bitmask_android/android-ndk:latest" + stage: build + script: + - git submodule sync --recursive + - git submodule update --init --recursive + - ./gradlew clean + - ./gradlew assembleProductionRelease + - ./gradlew assembleProductionBeta + artifacts: + paths: + - app/build/outputs/ + when: manual
\ No newline at end of file |