Skip to content

Commit

Permalink
refactor: mark Github releases as pre-releases w/ Fastlane
Browse files Browse the repository at this point in the history
  • Loading branch information
kueda committed Dec 17, 2024
1 parent 185e2a2 commit 8f8f249
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 2 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8f8f249

Please sign in to comment.