Skip to content

Commit

Permalink
Ensure tag_name is a string
Browse files Browse the repository at this point in the history
  • Loading branch information
Mongey committed Jul 23, 2018
1 parent 6fed626 commit 042b0c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Expand Up @@ -118,7 +118,7 @@ platform :mac do
api_token: ENV["GITHUB_TOKEN"],
name: "SeaEye v#{new_version}",
is_prerelease: false,
tag_name: new_version,
tag_name: new_version.to_s,
description: comments,
commitish: RELEASE_BRANCH,
upload_assets: [ZIP_OUTPUT]
Expand Down

0 comments on commit 042b0c0

Please sign in to comment.