diff options
author | cyBerta <cyberta@riseup.net> | 2022-02-07 00:16:08 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2022-02-07 00:16:08 +0100 |
commit | 4f23849b79ec0801672ff593a15907a6b1505940 (patch) | |
tree | 3e32871322067f3a0fed95544e17e3b65b6d4a06 /.gitlab-ci.yml | |
parent | 71b051dc9958d8432a17b30db0177fad87901e7d (diff) |
Adds another build task called double release to build more time efficiently multiple flavors. Adapting prepareForDistribution.sh accordingly1.1.2
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 |