Skip to content

Commit

Permalink
Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
djkovrik committed Jun 27, 2023
1 parent 218edae commit 7a4ba42
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/GooglePlayDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Deploy to Prod
on:
push:
branches:
- release/
- release/*

jobs:
deploy:
Expand All @@ -21,9 +21,6 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build
run: ./gradlew build

- name: Assemble Release Bundle
run: ./gradlew bundleRelease

Expand All @@ -42,6 +39,7 @@ jobs:
echo "Tagging release with tag $version_name"
git tag $version_name release/$version_name
git push origin --tags
- name: Create service_account.json
run: echo '${{ secrets.SERVICE_ACCOUNT_JSON }}' > service_account.json

Expand All @@ -50,7 +48,7 @@ jobs:
with:
serviceAccountJson: service_account.json
packageName: com.sedsoftware.blinktracker
releaseFile: app/build/outputs/bundle/release/com.sedsoftware.blinktracker-release.aab
releaseFiles: app/build/outputs/bundle/release/com.sedsoftware.blinktracker-release.aab
mappingFile: app/build/outputs/mapping/release/mapping.txt
track: production
whatsNewDirectory: distribution/whatsnew
8 changes: 5 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ android {
applicationId = "com.sedsoftware.blinktracker"
minSdk = 26
targetSdk = 33
versionCode = 100001
versionName = "1.0.1"
versionCode = 100101
versionName = "1.1.1"
setProperty("archivesBaseName", applicationId)

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand All @@ -49,7 +49,9 @@ android {
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
}
release {
signingConfig = signingConfigs[if (useReleaseKeystore) "release" else "debug"]
if (useReleaseKeystore) {
signingConfig = signingConfigs["release"]
}
isShrinkResources = true
isMinifyEnabled = true
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
Expand Down
2 changes: 1 addition & 1 deletion distribution/whatsnew/whatsnew-en-US
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Initial release
Minor bugfixes
2 changes: 1 addition & 1 deletion distribution/whatsnew/whatsnew-ru-RU
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Начальный релиз
Различные исправления

0 comments on commit 7a4ba42

Please sign in to comment.