CI/CD for push example to google play#745
Open
sergeysozinov wants to merge 4 commits into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a manual GitHub Actions workflow to automate releasing the example Android app to Google Play by bumping its version, building an AAB, uploading it to Play, and then merging the version-bump PR back into the source branch.
Changes:
- Introduces a
workflow_dispatchworkflow that bumps the example app version, builds the release bundle, uploads it to Google Play (internal/draft), and auto-merges the version bump PR. - Adds a bash helper script to bump
example/app’sversionCodeand alignversionNamewithSDK_VERSION_NAME.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
.github/workflows/publish-example-to-play.yml |
New CI workflow for version bump → build/upload → PR merge automation. |
.github/bump_example_versions.sh |
Script that creates a release branch and updates versionCode/versionName for the example app. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
storeFile in keystore.properties is resolved via file() inside the :app module, so the workflow decodes the keystore straight into example/app/ where Gradle actually looks for it. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
enotniy
reviewed
Jul 24, 2026
| echo "Nothing to commit — the version bump produced no changes. Aborting instead of pushing an empty branch." | ||
| exit 1 | ||
| fi | ||
| git commit -m "Bump example app to versionName $version_name, versionCode $new_code" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
CI/CD for push example to google play