diff options
author | cyBerta <cyberta@riseup.net> | 2024-06-29 03:29:09 +0200 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2024-06-30 01:50:09 +0200 |
commit | ff2e4272346b059c308f360288f705ae0c7495f4 (patch) | |
tree | 3e22d334ceafc4f76db6a490e727ce31300d6f2c | |
parent | 7af367662c1d27e61d92ae73d6283581a4fdc5f3 (diff) |
specify -apk option for beta build on the CI
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e888f49b..36988fb2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -203,7 +203,7 @@ build_fdroid_beta_release: image: "0xacab.org:4567/leap/bitmask_android/android-ndk:latest" stage: build script: - - ./scripts/prepareForDistribution.sh build -no-tag -beta >> normalBeta.log 2>&1 + - ./scripts/prepareForDistribution.sh build -apk fat -no-tag -beta >> normalBeta.log 2>&1 artifacts: paths: - app/build/outputs/ @@ -231,7 +231,7 @@ build_fdroid_custom_beta_release: image: "0xacab.org:4567/leap/bitmask_android/android-ndk:latest" stage: build script: - - ./scripts/prepareForDistribution.sh build -no-tag -beta -custom >> customBeta.log 2>&1 + - ./scripts/prepareForDistribution.sh build -apk fat -no-tag -beta -custom >> customBeta.log 2>&1 artifacts: paths: - app/build/outputs/ |