diff --git a/.github/workflows/android-release.yaml b/.github/workflows/android-release.yaml index dd2a091ae5..82e339753d 100644 --- a/.github/workflows/android-release.yaml +++ b/.github/workflows/android-release.yaml @@ -31,7 +31,7 @@ jobs: # TODO: Find a way to refactor FDroid versioning without that additional commit. build=$(($(tools/unix/version.sh ios_build) + 1)) code=$(($(tools/unix/version.sh android_code) + 1)) - tag=$version-$build-android + tag=$version-$build-android-rc echo "::set-output name=version::$version" echo "::set-output name=build::$build" echo "::set-output name=tag::$tag" @@ -165,6 +165,7 @@ jobs: name: ${{ needs.tag.outputs.tag }} tag_name: ${{ needs.tag.outputs.tag }} discussion_category_name: 'Announcements' + prerelease: true files: | ./android/app/build/outputs/apk/web/release/OrganicMaps-${{ needs.tag.outputs.code }}-web-release.apk ./android/app/build/outputs/apk/web/release/OrganicMaps-${{ needs.tag.outputs.code }}-web-release.apk.sha256sum diff --git a/android/app/build.gradle b/android/app/build.gradle index 53a93f6d1a..82225e9906 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -33,7 +33,7 @@ buildscript { println('Building without Google Firebase Services') } - classpath('com.github.triplet.gradle:play-publisher:3.8.6') + classpath('com.github.triplet.gradle:play-publisher:3.9.1') classpath('ru.cian:huawei-publish-gradle-plugin:1.4.2') } } @@ -442,8 +442,7 @@ task prepareGoogleReleaseListing { play { enabled.set(false) - track.set('production') - userFraction.set(Double.valueOf(0.10)) // 10% + track.set('alpha') defaultToAppBundles.set(true) releaseStatus.set(ReleaseStatus.IN_PROGRESS) serviceAccountCredentials.set(file('google-play.json'))