Skip to content

Commit

Permalink
UI.message("Changelog: #{changelog}")
Browse files Browse the repository at this point in the history
Add Comments

Remove line
  • Loading branch information
KuznetsovNikita committed Dec 8, 2024
1 parent 49adf1d commit 7b0c780
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/ipad-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,21 @@ jobs:
with:
name: gum-logs
path: /Users/runner/Library/Logs/gym/*.log

- name: Summary
run: |
echo '### Successful iPad build 🚀🚀🚀' >> $GITHUB_STEP_SUMMARY
echo 'Well done!' >> $GITHUB_STEP_SUMMARY
echo 'The app with build version: ${{ env.VERSION_CODE }}' >> $GITHUB_STEP_SUMMARY
echo 'Uploaded to TestFlight' >> $GITHUB_STEP_SUMMARY
- name: Comment PR
uses: thollander/actions-comment-pull-request@v3
if: github.event_name == 'pull_request'
with:
message: |
### Successful iPad build 🚀🚀🚀
Well done!
The app with build version: ${{ env.VERSION_CODE }}
Uploaded to TestFlight
comment-tag: ipad_build
2 changes: 1 addition & 1 deletion apps/tablet/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ platform :ios do
load_asc_api_key
bump_build_number
build_app_with_signing(keychain_info)
create_changelog
submit_to_testflight
ensure
cleanup_keychain(keychain_info)
Expand Down Expand Up @@ -134,6 +133,7 @@ platform :ios do
api_key = lane_context[SharedValues::APP_STORE_CONNECT_API_KEY]
ipa = lane_context[SharedValues::IPA_OUTPUT_PATH]
changelog = changelog_from_git_commits(commits_count: 10, merge_commit_filtering: "exclude_merges")
UI.message("Changelog: #{changelog}")

pilot(
api_key: api_key,
Expand Down

0 comments on commit 7b0c780

Please sign in to comment.