From 8428421b9733fe182a7472bb114ec7ad82f7a078 Mon Sep 17 00:00:00 2001 From: TaprootFreak <142087526+TaprootFreak@users.noreply.github.com> Date: Mon, 1 Jun 2026 23:54:39 +0200 Subject: [PATCH] fix(ios): point Match at RealUnitCH/fastlane-certificates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After the DFXswiss → RealUnitCH org transfer of the app repo, the iOS release lane started failing in Fastlane Match's sync_code_signing with 'git@github.com: Permission denied (publickey)' — the deploy keys on the old DFXswiss/fastlane-certificates repo were no longer registered post-transfer cleanup. The certificates and provisioning profiles have been migrated to RealUnitCH/fastlane-certificates (same encrypted content, same MATCH_PASSWORD). Point both Matchfile and the Fastfile's explicit git_url override at the new repo so the release lane resumes against the migrated storage. MATCH_SSH_KEY actions secret on RealUnitCH/app has been rotated against a fresh ED25519 deploy key on the new repo. No app-facing change. --- ios/fastlane/Fastfile | 2 +- ios/fastlane/Matchfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index df6d9f8f..2e6b5a98 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -65,7 +65,7 @@ platform :ios do type: "appstore", app_identifier: "swiss.realunit.app", api_key: get_api_key, - git_url: "git@github.com:DFXswiss/fastlane-certificates.git" + git_url: "git@github.com:RealUnitCH/fastlane-certificates.git" ) # CFBundleShortVersionString must be three integers (App Store ITMS-90060). diff --git a/ios/fastlane/Matchfile b/ios/fastlane/Matchfile index afc0d14e..337624a4 100644 --- a/ios/fastlane/Matchfile +++ b/ios/fastlane/Matchfile @@ -1,4 +1,4 @@ -git_url("git@github.com:DFXswiss/fastlane-certificates.git") +git_url("git@github.com:RealUnitCH/fastlane-certificates.git") storage_mode("git")