diff --git a/apps/app_seeds/fastlane/Fastfile b/apps/app_seeds/fastlane/Fastfile index 25190cd..6a52523 100644 --- a/apps/app_seeds/fastlane/Fastfile +++ b/apps/app_seeds/fastlane/Fastfile @@ -34,4 +34,22 @@ platform :android do skip_upload_apk: true, ) end + + # Promote the release currently on the internal track to production, reusing + # the SAME already-reviewed AAB (no rebuild, no new versionCode). Requires the + # service account to have "Release to production" permission in Play Console. + # Usage: bundle exec fastlane promote_production + desc "Promote the internal-track release to production (no rebuild)" + lane :promote_production do + supply( + track: "internal", + track_promote_to: "production", + skip_upload_aab: true, + skip_upload_apk: true, + skip_upload_metadata: true, + skip_upload_changelogs: true, + skip_upload_images: true, + skip_upload_screenshots: true, + ) + end end diff --git a/apps/app_seeds/pubspec.yaml b/apps/app_seeds/pubspec.yaml index ce2b6bb..c8a721c 100644 --- a/apps/app_seeds/pubspec.yaml +++ b/apps/app_seeds/pubspec.yaml @@ -1,7 +1,7 @@ name: tane description: "Tane — local-first, encrypted, decentralized traditional-seed inventory and market." publish_to: 'none' -version: 0.1.0+1 +version: 0.1.0+2 environment: sdk: ^3.11.5