refactor: mark Github releases as pre-releases w/ Fastlane (#2574)

This commit is contained in:
Ken-ichi
2024-12-19 12:41:40 -05:00
committed by GitHub
parent ebba764906
commit 768bea744c
2 changed files with 4 additions and 1 deletions

View File

@@ -350,3 +350,5 @@ After this command line call, attach the latest build to the new version in the
1. Wait at least a day for internal testers to report any blocking problems
1. `bundle exec fastlane beta` to distribute the builds to external test groups in TestFlight and the Play Store
1. After receiving OK during iteration meeting, make App Store release available
1. Start the staged release in App Store Connect
1. Mark the Github release as the latest non-pre-release

View File

@@ -449,7 +449,8 @@ lane :release do
description: changelog,
# This is really just a fallback in case last_tag isn't really a tag
commitish: "main",
upload_assets: [apk_path]
upload_assets: [apk_path],
is_prerelease: true
)
end
system "git checkout #{original_branch}", exception: true