Skip to content

Commit 9a2b23a

Browse files
rmi22186claude
andcommitted
fix: Build iOS for simulator in CI to avoid codesigning
Device builds require a Development Team even with --no-codesign. Switch to --simulator which skips codesigning entirely. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f68189a commit 9a2b23a

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ jobs:
107107
- name: Test
108108
working-directory: example
109109
run: flutter test
110-
- name: Build unsigned example iOS app
110+
- name: Build example iOS app for simulator
111111
working-directory: example
112-
run: flutter build ios --no-codesign
112+
run: flutter build ios --simulator
113113
- name: Cleanup
114114
if: ${{ always() }}
115115
working-directory: example

.github/workflows/release-from-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ jobs:
7575
- name: Install example dependencies
7676
working-directory: example
7777
run: flutter pub get
78-
- name: Build unsigned iOS app
78+
- name: Build example iOS app for simulator
7979
working-directory: example
80-
run: flutter build ios --no-codesign
80+
run: flutter build ios --simulator
8181

8282
setup-and-version:
8383
needs: [build-android, build-ios]

0 commit comments

Comments
 (0)