Fixes WP#1225 -- TestFlight/AppStore distribution signing was broken project-wide because master (the branch Fastlane's Matchfile actually reads, since it never sets git_branch) was missing the Distribution cert + AppStore profiles entirely.
Root cause: commit b9d50dca (2026-06-30) deleted them from master under the belief the cert was revoked. It never was -- a valid replacement (NGLL4NU9N9, valid to 2027-06-29) plus AppStore profiles for all 3 bundle IDs were generated the same day, but pushed to main instead of master. Branch-mismatch bug between two uncoordinated sessions.
This restores the 5 already-valid, already-encrypted (fastlane match git storage) files from main to master:
- certs/distribution/NGLL4NU9N9.cer
- certs/distribution/NGLL4NU9N9.p12
- profiles/appstore/AppStore_com.crowdstirr.app.mobileprovision
- profiles/appstore/AppStore_com.crowdstirr.business.mobileprovision
- profiles/appstore/AppStore_com.crowdstirr.socialbeacon.mobileprovision
No cert regeneration, no Apple Developer Portal mutation, no key material decrypted or inspected -- verified byte-for-byte (blob_id match) against main after commit.
Ed'''s explicit go-ahead, 2026-08-27.