fix: explicitly checkout flutter-client-sdk repo in update-ios-sdk-version workflow#245
Open
jonathannorris wants to merge 3 commits into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
This PR fixes the iOS SDK version update reusable workflow so it checks out the Flutter client SDK repository rather than the calling repository when invoked cross-repo.
Changes:
- Adds an explicit
repository: DevCycleHQ/flutter-client-sdksetting to the iOS workflow checkout step. - Aligns the iOS workflow with the previously fixed Android SDK update workflow behavior.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…n-ios-update-workflow
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
repository: DevCycleHQ/flutter-client-sdkto the checkout step, matching the same fix applied to the Android workflow in fix: explicitly checkout flutter-client-sdk repo in update-android-sdk-version workflow #234.When called as a reusable workflow from
ios-client-sdk,actions/checkoutdefaults to checking out the calling repo. Theios/devcycle_flutter_client_sdk.podspecfile doesn't exist there, causing thesedupdate step to fail with exit code 1. This has been happening on every scheduled Monday run and every iOS release trigger since the workflow was introduced.