release: bump to 0.1.0+2 and add promote_production fastlane lane
This commit is contained in:
parent
61f54cc0db
commit
5bf06aa258
2 changed files with 19 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue