release: bump to 0.1.0+2 and add promote_production fastlane lane
All checks were successful
ci / analyze (push) Successful in 1m9s
ci / test-commons-core (push) Successful in 38s
ci / test-app-seeds (push) Successful in 5m48s

This commit is contained in:
vjrj 2026-07-16 15:40:26 +02:00
parent 61f54cc0db
commit 5bf06aa258
2 changed files with 19 additions and 1 deletions

View file

@ -34,4 +34,22 @@ platform :android do
skip_upload_apk: true, skip_upload_apk: true,
) )
end 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 end

View file

@ -1,7 +1,7 @@
name: tane name: tane
description: "Tane — local-first, encrypted, decentralized traditional-seed inventory and market." description: "Tane — local-first, encrypted, decentralized traditional-seed inventory and market."
publish_to: 'none' publish_to: 'none'
version: 0.1.0+1 version: 0.1.0+2
environment: environment:
sdk: ^3.11.5 sdk: ^3.11.5