feat(ci): Add release workflow for App Store submissions#109
Merged
Conversation
Adds release_ci lane and corresponding GitHub workflow for automated App Store releases. The workflow builds the app, generates screenshots, uploads metadata and binary, and submits for App Store review. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a CI-driven “release to App Store” path by introducing a new Fastlane lane (release_ci) and a manually triggered GitHub Actions workflow that runs it, enabling automated build + screenshot generation + metadata/binary upload + submission for review.
Changes:
- Added
release_ciFastlane lane to perform version/build prep, build/validate, generate screenshots, upload to App Store Connect, submit for review, then commit/tag via GitHub API. - Added
Release to App StoreGitHub Actions workflow (release.yml) to run the lane with required secrets and upload screenshots as an artifact.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| fastlane/lanes/release.rb | Adds the release_ci lane that automates App Store submission steps and signs version bumps via GitHub API. |
| .github/workflows/release.yml | Introduces a workflow_dispatch pipeline to execute the new CI release lane and archive screenshots. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Avoids relying on SharedValues::IPA_OUTPUT_PATH for defensive safety. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Sentry Build Distribution
|
Since the workflow always releases from main, use a static concurrency group to prevent multiple releases running concurrently regardless of which branch triggers the workflow. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Avoids relying on implicit PRODUCT_NAME from Xcode project settings. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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
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.
Summary
release_cilane for automated App Store releasesAPP_REVIEW_EMAIL_ADDRESSandAPP_REVIEW_PHONE_NUMBERsecrets to fastlaneTest plan
🤖 Generated with Claude Code