Skip to content

Commit 347d447

Browse files
Teodor Ciuraruclaude
andcommitted
fix(flutter): correct iOS artifact name to include run number
BrowserStack iOS job was trying to download 'flutter-ios-ipa' but the Build iOS job uploads 'flutter-ios-ipa-${{ github.run_number }}'. This was causing the error: Unable to download artifact(s): Artifact not found for name: flutter-ios-ipa 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5a36c61 commit 347d447

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/flutter-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ jobs:
675675
- name: Download iOS IPA
676676
uses: actions/download-artifact@v4
677677
with:
678-
name: flutter-ios-ipa
678+
name: flutter-ios-ipa-${{ github.run_number }}
679679
path: flutter_app/build/ios/ipa/
680680

681681
- name: Setup Flutter

0 commit comments

Comments
 (0)