Skip to content

Commit f283b7e

Browse files
graycreateGrayclaude
authored
chore: migrate to shared ios-certificates Match repository (#71)
- Update Fastlane Match git_url to git@github.com:graycreate/ios-certificates.git - Deprecate old certificates-v2er-iOS repository - Share distribution certificates with other apps to avoid Apple's 3-cert limit - Generate new provisioning profiles for v2er.app in shared repo - Bump version to 1.1.19 for release pipeline testing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Gray <gray@mba.local> Co-authored-by: Claude <noreply@anthropic.com>
1 parent 306d552 commit f283b7e

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to V2er iOS app will be documented in this file.
44

5+
## v1.1.19 (Build XX)
6+
1. Infrastructure: Migrate certificate management to shared ios-certificates repository
7+
2. Improvement: Update Fastlane Match to use git@github.com:graycreate/ios-certificates.git
8+
3. Test: Verify release pipeline works with new Match repository configuration
9+
510
## v1.1.18 (Build XX)
611
1. Improvement: Upgrade all CI/CD workflows to use Xcode 26.0.1 (latest version)
712
2. Improvement: Use macOS 26 runners with Fastlane 2.228.0 for improved build performance

V2er/Config/Version.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// VERSION_CODE: Build number (must always increase)
77

88
// VERSION_NAME - This is what users see (e.g., 1.1.2)
9-
MARKETING_VERSION = 1.1.18
9+
MARKETING_VERSION = 1.1.19
1010

1111
// VERSION_CODE - Internal build number (e.g., 29, 30, 31...)
1212
CURRENT_PROJECT_VERSION = 51

fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ platform :ios do
6161
type: "appstore",
6262
readonly: is_ci,
6363
app_identifier: "v2er.app",
64-
git_url: ENV["MATCH_GIT_URL"] || "git@github.com:graycreate/certificates-v2er-iOS.git",
64+
git_url: ENV["MATCH_GIT_URL"] || "git@github.com:graycreate/ios-certificates.git",
6565
keychain_name: ENV["MATCH_KEYCHAIN_NAME"] || "login.keychain",
6666
keychain_password: ENV["MATCH_KEYCHAIN_PASSWORD"] || ""
6767
)

fastlane/Matchfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Matchfile - Configuration for code signing
22

33
# Git repository URL for storing certificates
4-
git_url(ENV["MATCH_GIT_URL"] || "git@github.com:graycreate/certificates-v2er-iOS.git")
4+
git_url(ENV["MATCH_GIT_URL"] || "git@github.com:graycreate/ios-certificates.git")
55

66
# Storage mode
77
storage_mode("git")

0 commit comments

Comments
 (0)