[Android] publish packages independently#329
Open
kiftio wants to merge 1 commit into
Open
Conversation
This was referenced Jun 24, 2026
Contributor
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
11 tasks
Package Size
Measured from the PR base SHA and PR head SHA. This comment reports package artifact sizes only; it is not a final app binary-size report. |
markmur
reviewed
Jun 24, 2026
45bb9fb to
05c4f31
Compare
markmur
approved these changes
Jun 24, 2026
| CALVER_REGEX='^[0-9]{4}\.(0[1-9]|1[0-2])\.(0[1-9]|[12][0-9]|3[01])\.(0|[1-9][0-9]*)(-(alpha|beta|rc)\.(0|[1-9][0-9]*))?$' | ||
|
|
||
| VERSION_REGEX="$SEMVER_REGEX" | ||
| VERSION_FORMAT="X.Y.Z or X.Y.Z-{alpha|beta|rc}.N" |
Contributor
There was a problem hiding this comment.
Do we need to update this?
05c4f31 to
9716dc8
Compare
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.

What changes are you making?
Introduces a dedicated release pipeline for the
com.shopify:embedded-checkout-protocolAndroid artifact, decoupling it from thecom.shopify:checkout-kitrelease process.android-protocol-publish.ymlworkflow that publishesembedded-checkout-protocolto Maven Central, triggered by GitHub Releases taggedembedded-checkout-protocol/YYYY.MM.DD[-prerelease.N].embedded-checkout-protocolpublishing fromandroid-publish.ymland adds a preflight check that verifies the required protocol version is already available on Maven Central before publishingcheckout-kit.Embedded Checkout Protocolas a selectable platform in therelease.ymlworkflow, using CalVer (YYYY.MM.DD) instead of SemVer for version validation.validate-release-versionto support CalVer, validate theembeddedCheckoutProtocolAndroidversion when releasing Android Kit, and emitandroid_protocol_versionas a workflow output.CONTRIBUTING.mdand adds the corresponding checklist to the pull request template.How to test
validate-release-version "Embedded Checkout Protocol" "YYYY.MM.DD"locally with a valid and invalid CalVer string to confirm format validation.release.ymlworkflow withEmbedded Checkout Protocolselected andDry runmode to confirm the release plan output includes the correct tag prefix (embedded-checkout-protocol/) and version format.release.ymlworkflow withAndroidselected andDry runmode to confirm the plan output includes theEmbedded Checkout Protocol versionline.android-publish.ymlpreflight step fails when the referenced protocol version is not on Maven Central.Before you merge
Important
platforms/swift/README.mdand/orplatforms/android/README.md)Releasing a new Swift version?
ShopifyCheckoutKit.podspecplatforms/swift/Sources/ShopifyCheckoutKit/ShopifyCheckoutKit.swiftplatforms/swift/CHANGELOG.mdplatforms/swift/README.md(major version only)Releasing a new Embedded Checkout Protocol version?
embeddedCheckoutProtocolAndroidinplatforms/android/gradle/libs.versions.tomlprotocol/languages/kotlin/embedded-checkout-protocol/api/embedded-checkout-protocol.apiif the public API changedReleasing a new Android version?
checkoutKitAndroidinplatforms/android/gradle/libs.versions.tomlplatforms/android/CHANGELOG.mdplatforms/android/README.mdTip
See the Contributing documentation for the full release process per platform.