Skip to content

Commit

Permalink
Fix release script
Browse files Browse the repository at this point in the history
[!] Could not find action, lane or variable 'version'. Check out the documentation for more details: https://docs.fastlane.tools/actions
  • Loading branch information
Mongey committed Jul 23, 2018
1 parent ad27986 commit 6fed626
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fastlane/Fastfile
Expand Up @@ -102,7 +102,7 @@ platform :mac do
comments = changelog(last_git_tag)
add_git_tag(
message: comments,
tag: "#{version}",
tag: "#{new_version}",
prefix: "v"
)

Expand All @@ -116,9 +116,9 @@ platform :mac do
set_github_release(
repository_name: GITHUB_REPOSITORY,
api_token: ENV["GITHUB_TOKEN"],
name: "SeaEye v#{version}",
name: "SeaEye v#{new_version}",
is_prerelease: false,
tag_name: version,
tag_name: new_version,
description: comments,
commitish: RELEASE_BRANCH,
upload_assets: [ZIP_OUTPUT]
Expand Down

0 comments on commit 6fed626

Please sign in to comment.