Skip to content

Commit

Permalink
Add TODO note regarding GitHub release creation
Browse files Browse the repository at this point in the history
  • Loading branch information
mokagio committed Aug 16, 2024
1 parent 54b564f commit 6c26713
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -659,12 +659,14 @@ platform :android do
end

private_lane :create_gh_release do |version:, prerelease: false|
# TODO: Add step to downalod universal APK etc. once the app uses bundles

create_release(
repository: GITHUB_REPO,
version: version,
release_notes_file_path: RELEASE_NOTES_PATH,
prerelease: prerelease,
release_assets: GRADLE_APK_OUTPUT_PATH
release_assets: GRADLE_APK_OUTPUT_PATH.to_s
)
end

Expand Down

0 comments on commit 6c26713

Please sign in to comment.