diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 30b0e406b..3e38439ac 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -100,6 +100,18 @@ platform :android do properties: gradleProperties ) + UI.verbose("Deploying Custom Entitlements Computation version") + + gradleProperties["ANDROID_VARIANT_TO_PUBLISH"] = "customEntitlementComputationRelease" + gradleProperties["POM_ARTIFACT_ID"] = "purchases-custom-entitlement-computation" + + gradle( + tasks: [ + "purchases:publish --no-daemon --no-parallel" + ], + properties: gradleProperties + ) + github_release(version: version) unless is_snapshot_version?(version) end