mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-21 20:39:22 +00:00
Add single Comunic build script
This commit is contained in:
parent
3ed56eaa3d
commit
f018e78047
13
build_all_comunic_releases.sh
Executable file
13
build_all_comunic_releases.sh
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
DEST="/home/pierre/Desktop"
|
||||
|
||||
make stable_release_split_per_abi && \
|
||||
mv build/app/outputs/flutter-apk/app-armeabi-v7a-stable-release.apk "$DEST" && \
|
||||
mv build/app/outputs/flutter-apk/app-arm64-v8a-stable-release.apk "$DEST" && \
|
||||
mv build/app/outputs/flutter-apk/app-x86_64-stable-release.apk "$DEST" && \
|
||||
mv build/app/outputs/mapping/stable/release/mapping.txt "$DEST" && \
|
||||
make stable_release && \
|
||||
mv build/app/outputs/flutter-apk/app-stable-release.apk "$DEST"
|
||||
|
||||
echo "Done. Artifacts copied to $DEST"
|
||||
|
Loading…
Reference in New Issue
Block a user