Skip to content

Commit

Permalink
CI Builds
Browse files Browse the repository at this point in the history
* Set version name for CI Builds.
  • Loading branch information
rumboalla committed Mar 23, 2024
1 parent ffe24e4 commit f1ac43b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: softprops/action-gh-release@v2
if: ${{ env.BRANCH }} == "3.x"
with:
tag_name: 3.1.${{ github.run_number }}-ci
tag_name: 0.0.${{ github.run_number }}-ci
name: CI-Release-${{ env.BRANCH }}-${{ github.run_number }}
files: ./app/build/outputs/apk/release/com.apkupdater.ci-release.apk
body: ${{ github.event.head_commit.message }}
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
minSdk = 21
targetSdk = 34
versionCode = 52
versionName = if (buildNumber.isEmpty()) "3.0.3" else "3.1.$buildNumber"
versionName = if (buildNumber.isEmpty()) "3.0.3" else "0.0.$buildNumber"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
Expand Down

0 comments on commit f1ac43b

Please sign in to comment.