1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-2627 App | Tech | Github CI actions for release artefacts

This commit is contained in:
Evgenii Kozlov 2024-07-01 14:25:17 +02:00
parent c5e2731fbf
commit 67a91161ac
2 changed files with 5 additions and 9 deletions

View file

@ -50,12 +50,9 @@ jobs:
-Pcom.anytype.ci=true \
-Dorg.gradle.unsafe.configuration-cache=false"
- name: Build APKS
- name: Build release APKS
run: ./gradlew :app:assembleRelease
# - name: Build AAB
# run: ./gradlew :app:bundleRelease
- name: Clean secrets
if: always()
run: ./scripts/release/clean-secrets.sh
@ -63,7 +60,6 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: APK + BUNDLE
name: Release APK.
path: |
app/build/outputs/apk/release/
app/build/outputs/bundle/release/
app/build/outputs/apk/release/

View file

@ -129,10 +129,10 @@ android {
// Configures multiple APKs based on ABI.
abi {
// Enables building multiple APKs per ABI.
enable false
enable true
reset()
include "armeabi-v7a", "arm64-v8a"
universalApk false
universalApk true
}
}