diff options
author | cyBerta <cyberta@riseup.net> | 2022-02-06 16:42:11 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2022-02-06 16:42:11 +0100 |
commit | 71b051dc9958d8432a17b30db0177fad87901e7d (patch) | |
tree | 21397d4807f7a7b7a184dce3576a5b9c51e871cf /.gitlab-ci.yml | |
parent | 8a29428e397291e7ea6fb2bbfbabe8ed21b3ff93 (diff) |
build web apks and aabs in CI's release task
Diffstat (limited to '.gitlab-ci.yml')
-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 ad2885c0..67237611 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -118,7 +118,7 @@ build_release: image: "0xacab.org:4567/leap/bitmask_android/android-ndk:latest" stage: build script: - - ./scripts/prepareForDistribution.sh build -no-tag >> normalRelease.log 2>&1 + - ./scripts/prepareForDistribution.sh build -aab -apk web -no-tag >> normalRelease.log 2>&1 artifacts: paths: - app/build/outputs/ @@ -146,7 +146,7 @@ build_custom_release: image: "0xacab.org:4567/leap/bitmask_android/android-ndk:latest" stage: build script: - - ./scripts/prepareForDistribution.sh build -no-tag -custom >> customRelease.log 2>&1 + - ./scripts/prepareForDistribution.sh build -aab -apk web -no-tag -custom >> customRelease.log 2>&1 artifacts: paths: - app/build/outputs/ |