We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a0b6e8 commit d977c22Copy full SHA for d977c22
fastlane/Fastfile
@@ -80,6 +80,7 @@ platform :ios do
80
desc "create github release and upload assets"
81
lane :create_release do |options|
82
version = options[:version]
83
+ branch = options[:branch]
84
changelog_section = options[:changelog_section]
85
output_dir = options[:output_dir]
86
github_token = options[:github_token]
@@ -98,7 +99,7 @@ platform :ios do
98
99
name: "#{version}",
100
tag_name: "#{version}",
101
description: version_changelog,
- commitish: "master",
102
+ commitish: "#{branch}",
103
upload_assets: ["./#{output_dir}/IterableSDK.xcframework.zip", "./#{output_dir}/IterableAppExtensions.xcframework.zip"],
104
is_prerelease: set_prerelease
105
)
0 commit comments