Skip to content

Commit

Permalink
gitlab ci
Browse files Browse the repository at this point in the history
  • Loading branch information
danemadsen committed Aug 5, 2024
1 parent ec57779 commit 6a04111
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .gitlab/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ build-apk:
# Build the APKs split by ABI
- ./packages/flutter/bin/flutter build apk --split-per-abi

# Rename the APKs
- mv build/app/outputs/flutter-apk/app-arm64-v8a-release.apk build/app/outputs/flutter-apk/maid-android-arm64-v8a.apk
- mv build/app/outputs/flutter-apk/app-x86_64-release.apk build/app/outputs/flutter-apk/maid-android-x86_64.apk
artifacts:
paths:
- build/app/outputs/flutter-apk/*
- build/app/outputs/flutter-apk/maid-android-arm64-v8a.apk
- build/app/outputs/flutter-apk/maid-android-x86_64.apk

0 comments on commit 6a04111

Please sign in to comment.