-
Notifications
You must be signed in to change notification settings - Fork 21
ref(ci): Replace Emerge fastlane plugin with REST API upload #722
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
NicoHinderling
wants to merge
1
commit into
main
Choose a base branch
from
another-test-pr
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
📸 Snapshot TestNo snapshots generated🛸 Powered by Emerge Tools |
d317f6d to
d1a2dd9
Compare
Move Emerge Tools upload from fastlane plugin to a dedicated GitHub Action step using the REST API. This separates build concerns from upload logic and provides clearer debugging when issues occur. The upload step: - Zips the xcarchive - POSTs to api.emergetools.com/upload with build metadata - PUTs the zip to the returned signed URL Also adds iOS platform installation step to fix CI runner issue. Co-Authored-By: Claude <noreply@anthropic.com>
d1a2dd9 to
d47d2a8
Compare
1 build increased size
HackerNews 3.10 (1)
|
| Item | Install Size Change |
|---|---|
| 📝 IBMPlexSans-Bold.ttf | ⬆️ 221.2 kB |
| 📝 IBMPlexSans-Medium.ttf | ⬆️ 221.2 kB |
| 📝 IBMPlexSans-Regular.ttf | ⬆️ 221.2 kB |
| 📝 IBMPlexMono-Bold.ttf | ⬆️ 139.3 kB |
| 📝 IBMPlexMono-Medium.ttf | ⬆️ 135.2 kB |
🛸 Powered by Emerge Tools
Comment trigger: Size diff threshold of 100.00kB exceeded
NicoHinderling
commented
Jan 30, 2026
| run: sudo xcode-select -s '/Applications/Xcode_26.0.1.app/Contents/Developer' | ||
|
|
||
| - name: Install iOS platform | ||
| run: xcodebuild -downloadPlatform iOS |
Contributor
Author
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mtopo27
added a commit
that referenced
this pull request
Jan 30, 2026
Match the working config from PR #722 - Xcode 26.0.1 with the xcodebuild -downloadPlatform iOS step to install the iOS SDK. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
mtopo27
added a commit
that referenced
this pull request
Jan 30, 2026
- Delete ios_emerge_upload_adhoc.yml - Delete ios_emerge_upload_main.yml - Delete ios_emerge_upload_snapshots.yml - Update ios_emerge_upload_pr.yml with iOS platform download and REST API upload - Remove emerge() from Fastfile (upload moved to workflow) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

Replace the Emerge Tools fastlane plugin upload with direct REST API calls in GitHub Actions.
This moves the upload logic out of fastlane into a dedicated workflow step, which:
The new upload step zips the xcarchive, requests a signed URL from Emerge, and uploads the build with proper PR metadata (branch, sha, baseSha, prNumber).
🤖 Generated with Claude Code