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 67237611..5cc25a02 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -114,6 +114,20 @@ build: when: always expire_in: 3 days +build_double_release: + image: "0xacab.org:4567/leap/bitmask_android/android-ndk:latest" + stage: build + script: + - ./scripts/prepareForDistribution.sh build -allflavors -aab -apk web -no-tag >> normalRelease.log 2>&1 + artifacts: + paths: + - app/build/outputs/ + - currentReleases/ + - normalRelease.log + when: always + expire_in: 1 week + when: manual + build_release: image: "0xacab.org:4567/leap/bitmask_android/android-ndk:latest" stage: build |