gowalk-cicd 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- 1.0.1
1
+ 1.0.2
@@ -1 +1 @@
1
- 1.0.1
1
+ 1.0.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gowalk-cicd",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Zero-config GitHub Actions delivery for iOS TestFlight and Android Google Play.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -61,6 +61,13 @@ jobs:
61
61
  # AppLocalizations now generate real sources. Nothing else generates them,
62
62
  # and analyze/compile fail on the missing import if we skip this.
63
63
  if [ -f l10n.yaml ]; then flutter gen-l10n; fi
64
+ # Apps wired up by `flutterfire configure` carry an Xcode run-script phase that
65
+ # shells out to the flutterfire CLI to upload Crashlytics dSYMs. That CLI is not
66
+ # on a clean runner, so the phase exits non-zero and fails the whole archive.
67
+ if grep -q "firebase_crashlytics:" pubspec.yaml 2>/dev/null; then
68
+ dart pub global activate flutterfire_cli >/dev/null 2>&1 || true
69
+ echo "$HOME/.pub-cache/bin" >> "$GITHUB_PATH"
70
+ fi
64
71
  flutter build ios --release --no-codesign --config-only
65
72
  - uses: ./.github/actions/swift-app
66
73
  with: