Skip to content

Commit

Permalink
Bump version to 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Popalay committed Mar 22, 2022
1 parent 7212cdf commit ff0f6b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,12 @@ jobs:
args: --fail-fast --config .github/detekt.yml --report sarif:./reports/detekt.sarif

- name: Upload SARIF to Github using the upload-sarif action
uses: github/codeql-action/upload-sarif@v1
uses: github/codeql-action/upload-sarif@v1.1.5
if: always()
with:
sarif_file: ./reports/detekt.sarif
sha: ${{ env.GITHUB_SHA }}
ref: ${{ env.GITHUB_REF }}

- name: Build with Gradle
run: ./gradlew assembleDebug assembleRelease bundleRelease -Pbarnee.versioncode=$BUILD_NUMBER --scan --stacktrace
Expand Down Expand Up @@ -92,7 +94,7 @@ jobs:

- name: Publish to Play store
if: startsWith(github.ref, 'refs/tags/v')
uses: r0adkll/upload-google-play@v1
uses: r0adkll/upload-google-play@v1.0.15
with:
serviceAccountJsonPlainText: ${{ secrets.GOOGLE_PLAY_ACCOUNT_JSON }}
packageName: com.popalay.barnee
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ android {
minSdk = libs.versions.android.minSdk.get().toInt()
targetSdk = libs.versions.android.targetSdk.get().toInt()
versionCode = properties.getOrDefault("barnee.versioncode", 1).toString().toInt()
versionName = "1.1.3"
versionName = "1.1.4"

signingConfigs {
getByName("debug") {
Expand Down

0 comments on commit ff0f6b8

Please sign in to comment.