fix(aso): pin App Store metadata sync to the pubspec version - #230
Merged
Conversation
deliver can only write version-level metadata (release notes, promotional text) to an editable "Prepare for Submission" version. Without app_version it polls for one to appear — and when ASC has none (e.g. the previous version just went into review) the retry loop burns the job's 15-minute timeout, as in run 31571366367. Pinning app_version from pubspec.yaml makes deliver create the version when it's missing and fail fast with a real ASC error otherwise. Co-Authored-By: Claude Fable 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.
Problem
The
app-storejob of the Store metadata workflow (run 31571366372) spent 15 minutes in deliver'sCannot find edit app store version... Retryingloop until the job timeout killed it.deliver can only write version-level metadata (release notes, promotional text) to an editable ("Prepare for Submission") App Store version. The Aug 8 sync was green because iOS 1.7.2 sat editable in ASC; that version's state has since changed (submitted for review?), so ASC currently has no editable version and deliver polls forever — the lane never tells it which version it's shipping.
Fix
Pass
app_version(parsed frompubspec.yaml, currently1.7.3) toupload_to_app_store:Verified locally: lane CWD is
fastlane/(so../pubspec.yamlresolves), YAML parse yields1.7.3,fastlane lanesparses clean. Merging this re-triggers the sync (workflow watchesfastlane/**).🤖 Generated with Claude Code