Only some dSYMs get uploaded to Firebase Crashlytics from Codemagic

Following the Codemagic docs for uploading iOS dSYMs to Firebase Crashlytics, only one archive's symbols made it. The upload script used find with | head -1, which grabs just the first dSYM zip and ignores the rest. So Crashlytics showed incomplete symbolication for the rest of the build's frameworks.

Drop the | head -1 so every dSYM archive is uploaded, not just the first match. The corrected script lists all dSYM files, resolves the parent directory of each zip, and runs upload-symbols against all of them. The reporter confirmed all symbols went up after the change.

Source: https://github.com/codemagic-ci-cd/codemagic-docs/issues/978

Source: https://github.com/codemagic-ci-cd/codemagic-docs/issues/978