From 294b926a9b0adecfe08b8ae82d7b8a9ca2b57649 Mon Sep 17 00:00:00 2001 From: Github Actions Date: Wed, 8 Jan 2025 19:05:07 +0000 Subject: [PATCH 1/5] Bump version code to 325 and change version name to 9.5.1 --- app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 6ac91b812..de5196bab 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -22,8 +22,8 @@ android { applicationId = "com.cray.software.justreminder" minSdk = libs.versions.minSdk.get().toInt() targetSdk = libs.versions.targetSdk.get().toInt() - versionCode = 324 - versionName = "9.5.0" + versionCode = 325 + versionName = "9.5.1" multiDexEnabled = true renderscriptTargetApi = 23 renderscriptSupportModeEnabled = true From a52793a75dc51f5ff44b424a8171f5b3085136f6 Mon Sep 17 00:00:00 2001 From: Nazar Sukhovych Date: Wed, 8 Jan 2025 20:47:21 +0100 Subject: [PATCH 2/5] REM-915 - Update release CI --- .github/workflows/build_and_publish_release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build_and_publish_release.yml b/.github/workflows/build_and_publish_release.yml index fbbd93823..18e3c4d9f 100644 --- a/.github/workflows/build_and_publish_release.yml +++ b/.github/workflows/build_and_publish_release.yml @@ -72,6 +72,13 @@ jobs: id: buildRelease run: ./gradlew bundleRelease + - name: Save signed aab + uses: actions/upload-artifact@v4 + if: ${{ always() }} # IMPORTANT: Upload reports regardless of status + with: + name: signed-aab + path: app/build/outputs/bundle + - name: Create service_account.json id: create-service-account run: echo '${{ secrets.SERVICE_ACCOUT_JSON }}' > service_account.json @@ -93,6 +100,7 @@ jobs: packageName: com.cray.software.justreminder releaseFiles: ${{ steps.sign-free.outputs.signedReleaseFile }} track: alpha + changesNotSentForReview: true - name: Sign Pro AAB id: sign-pro From f471fa664b65df629e44cb993355daeec5f20caa Mon Sep 17 00:00:00 2001 From: Github Actions Date: Wed, 8 Jan 2025 19:47:47 +0000 Subject: [PATCH 3/5] Bump version code to 326 and change version name to 9.5.1 --- app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index de5196bab..60065e4b0 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -22,7 +22,7 @@ android { applicationId = "com.cray.software.justreminder" minSdk = libs.versions.minSdk.get().toInt() targetSdk = libs.versions.targetSdk.get().toInt() - versionCode = 325 + versionCode = 326 versionName = "9.5.1" multiDexEnabled = true renderscriptTargetApi = 23 From cf21c29562a36d861ce141a106b0209e843f12f1 Mon Sep 17 00:00:00 2001 From: Nazar Sukhovych Date: Thu, 9 Jan 2025 17:38:06 +0100 Subject: [PATCH 4/5] Update version code --- app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 60065e4b0..f3c64a7ac 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -22,7 +22,7 @@ android { applicationId = "com.cray.software.justreminder" minSdk = libs.versions.minSdk.get().toInt() targetSdk = libs.versions.targetSdk.get().toInt() - versionCode = 326 + versionCode = 327 versionName = "9.5.1" multiDexEnabled = true renderscriptTargetApi = 23 From ad70e37b39454258f2ea15e924064882b4c6eb62 Mon Sep 17 00:00:00 2001 From: Nazar Sukhovych Date: Thu, 9 Jan 2025 17:40:09 +0100 Subject: [PATCH 5/5] Update release CI --- .github/workflows/build_and_publish_release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_and_publish_release.yml b/.github/workflows/build_and_publish_release.yml index 18e3c4d9f..a30a409e2 100644 --- a/.github/workflows/build_and_publish_release.yml +++ b/.github/workflows/build_and_publish_release.yml @@ -99,8 +99,8 @@ jobs: serviceAccountJson: service_account.json packageName: com.cray.software.justreminder releaseFiles: ${{ steps.sign-free.outputs.signedReleaseFile }} - track: alpha - changesNotSentForReview: true + track: production +# changesNotSentForReview: true - name: Sign Pro AAB id: sign-pro @@ -118,4 +118,4 @@ jobs: serviceAccountJson: service_account.json packageName: com.cray.software.justreminderpro releaseFiles: ${{ steps.sign-pro.outputs.signedReleaseFile }} - track: alpha + track: production