Skip to content

Commit

Permalink
Fix version code file path for commit
Browse files Browse the repository at this point in the history
  • Loading branch information
anjmao committed Mar 2, 2020
1 parent bc07eb6 commit 370271b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,13 @@ platform :android do

desc "Commit and push bumped version"
lane :pushAndroidVersionCode do
git_commit(path: "./android_version_code", message: "Bump Android version code")
git_commit(path: "./fastlane/android_version_code", message: "Bump Android version code")

push_to_git_remote(
remote: "origin",
remote_branch: "master",
no_verify: true,
tags: false,
set_upstream: true
)
end
Expand Down

0 comments on commit 370271b

Please sign in to comment.