Skip to content

Commit

Permalink
When creating git tag use current version
Browse files Browse the repository at this point in the history
  • Loading branch information
willbur1984 committed Oct 16, 2023
1 parent c198a76 commit 19bb24e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ platform :ios do
desc "Create git tag"
lane :create_git_tag do
Dir.chdir("..") do
tag_name = prompt(text: "Tag name: ")
tag_name = sh("./scripts/print_info_plist_key.sh #{plist_bundle_short_version_string_key}").strip()

sh("git tag -a #{tag_name} -m \"Version #{tag_name}\"")
end
Expand Down

0 comments on commit 19bb24e

Please sign in to comment.