diff --git a/CHANGELOG.md b/CHANGELOG.md index cfd0633..2d8655b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to V2er iOS app will be documented in this file. +## v1.2.3 (Build XX) +1. Fix: Resolved CI pipeline issue with certificate syncing + ## v1.2.2 (Build XX) 1. Feature: Add reply sorting by popularity for better content discovery 2. Feature: Redesigned feedback section with improved vertical layout diff --git a/Version.xcconfig b/Version.xcconfig index 301ddd5..9a24bdc 100644 --- a/Version.xcconfig +++ b/Version.xcconfig @@ -6,7 +6,7 @@ // VERSION_CODE: Build number (must always increase) // VERSION_NAME - This is what users see (e.g., 1.1.2) -MARKETING_VERSION = 1.2.2 +MARKETING_VERSION = 1.2.3 // VERSION_CODE - Internal build number (e.g., 29, 30, 31...) CURRENT_PROJECT_VERSION = 51 diff --git a/fastlane/Matchfile b/fastlane/Matchfile index d6b60ac..bf65d86 100644 --- a/fastlane/Matchfile +++ b/fastlane/Matchfile @@ -24,6 +24,9 @@ git_branch("main") # Clone certificates repo to a temporary directory shallow_clone(true) +# Clone the branch directly to avoid "branch already exists" error in CI +clone_branch_directly(true) + # Generate profiles if they don't exist generate_apple_certs(true)