Skip to content

Commit 6f66cd6

Browse files
authored
ci(fastlane): fix ruby env vars (#609)
1 parent e2339b9 commit 6f66cd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fastlane/Fastfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ platform :ios do
6868
private_lane :release_commit do |options|
6969
next_version = options[:version]
7070

71-
sh('git', 'config', '--global', 'user.email', $GITHUB_EMAIL)
72-
sh('git', 'config', '--global', 'user.name', $GITHUB_USER)
71+
sh('git', 'config', '--global', 'user.email', ENV['GITHUB_EMAIL'])
72+
sh('git', 'config', '--global', 'user.name', ENV['GITHUB_USER'])
7373

7474
commit_message = "chore: release #{next_version} [skip ci]"
7575
sh('git', 'commit', '-am', commit_message)

0 commit comments

Comments
 (0)