Merge pull request #97 from kirmanak/app-bundle
Build app bundle with GitHub Action
This commit is contained in:
11
.github/workflows/sign.yml
vendored
11
.github/workflows/sign.yml
vendored
@@ -36,11 +36,14 @@ jobs:
|
||||
echo "storePassword=$MEALIENT_KEY_STORE_PASSWORD" >> keystore.properties
|
||||
echo "keyAlias=$MEALIENT_KEY_ALIAS" >> keystore.properties
|
||||
echo "keyPassword=$MEALIENT_KEY_PASSWORD" >> keystore.properties
|
||||
./gradlew build coverageReport sonar uploadToAppSweepRelease --no-configuration-cache
|
||||
./gradlew build bundle coverageReport sonar uploadToAppSweepRelease --no-configuration-cache
|
||||
cp app/build/outputs/apk/release/*.apk mealient-release.apk
|
||||
cp app/build/outputs/bundle/release/*.aab mealient-release.aab
|
||||
|
||||
- name: Upload signed APK
|
||||
- name: Upload release build
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: Signed APK
|
||||
path: mealient-release.apk
|
||||
name: Release build
|
||||
path: |
|
||||
mealient-release.apk
|
||||
mealient-release.aab
|
||||
|
||||
@@ -17,8 +17,8 @@ plugins {
|
||||
android {
|
||||
defaultConfig {
|
||||
applicationId = "gq.kirmanak.mealient"
|
||||
versionCode = 18
|
||||
versionName = "0.3.3"
|
||||
versionCode = 19
|
||||
versionName = "0.3.4"
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<item
|
||||
android:id="@+id/search_recipe_action"
|
||||
android:title="@string/search_recipes_hint"
|
||||
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
||||
app:showAsAction="always" />
|
||||
|
||||
</menu>
|
||||
Reference in New Issue
Block a user