Skip to content

Commit

Permalink
[#198] Add log test
Browse files Browse the repository at this point in the history
  • Loading branch information
doannimble committed Oct 30, 2023
1 parent ba127d1 commit cc972d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/android_deploy_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
- name: Generate release notes
id: generate-release-notes
run: |
echo "RELEASE_NOTE_CONTENT:$((git log -1 --merges | grep "\[") && echo "" || echo $(git log -1 --merges --format=%B))"
echo "RELEASE_NOTE_CONTENT=$((git log -1 --merges | grep "\[") && echo "" || echo $(git log -1 --merges --format=%B))" >> $GITHUB_OUTPUT
- name: Deploy Android Staging to Firebase
Expand Down
2 changes: 1 addition & 1 deletion bricks/template/__brick__/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ platform :ios do
product_name: options[:product_name],
firebase_app_id: options[:firebase_app_id],
tester_groups: options[:tester_groups],
notes: Environments.RELEASE_NOTES_CONTENT
notes: Environments.RELEASE_NOTE_CONTENT
)
end
end
2 changes: 1 addition & 1 deletion sample/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ platform :ios do
product_name: options[:product_name],
firebase_app_id: options[:firebase_app_id],
tester_groups: options[:tester_groups],
notes: Environments.RELEASE_NOTES_CONTENT
notes: Environments.RELEASE_NOTE_CONTENT
)
end
end

0 comments on commit cc972d2

Please sign in to comment.