Skip to content

Commit

Permalink
chore: fix redirecting to GITHUB_ENV in fastfile for ios build (#8339)
Browse files Browse the repository at this point in the history
  • Loading branch information
themooneer authored and beths-ledger committed Nov 12, 2024
1 parent fcfe5d8 commit 641abd6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/good-boxes-boil.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": patch
---

fix redirecting to GITHUB_ENV in fastfile for ios build and setting the build number correctly for slack notification
9 changes: 5 additions & 4 deletions apps/ledger-live-mobile/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,11 @@ platform :ios do

if (options[:ci])
sh(
<<-SHELL
echo "IOS_BUILD_NUMBER=#{build_number+1}" >> $env:GITHUB_ENV
SHELL
)
<<-SHELL
temp_ios_build_number_assignment="IOS_BUILD_NUMBER=#{build_number+1}"
echo $temp_ios_build_number_assignment | tee -a $GITHUB_ENV
SHELL
)
end
end

Expand Down

0 comments on commit 641abd6

Please sign in to comment.