Skip to content

Commit

Permalink
Merge pull request #274 from naz013/feature/merge-9.5.1-into-master
Browse files Browse the repository at this point in the history
Merge release/9.5.1 into master
  • Loading branch information
naz013 authored Jan 9, 2025
2 parents 0042276 + ad70e37 commit 3aeec84
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build_and_publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -92,7 +99,8 @@ jobs:
serviceAccountJson: service_account.json
packageName: com.cray.software.justreminder
releaseFiles: ${{ steps.sign-free.outputs.signedReleaseFile }}
track: alpha
track: production
# changesNotSentForReview: true

- name: Sign Pro AAB
id: sign-pro
Expand All @@ -110,4 +118,4 @@ jobs:
serviceAccountJson: service_account.json
packageName: com.cray.software.justreminderpro
releaseFiles: ${{ steps.sign-pro.outputs.signedReleaseFile }}
track: alpha
track: production
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 327
versionName = "9.5.1"
multiDexEnabled = true
renderscriptTargetApi = 23
renderscriptSupportModeEnabled = true
Expand Down

0 comments on commit 3aeec84

Please sign in to comment.