Skip to content

Commit d806a47

Browse files
authored
Merge pull request #60 from v2er-app/feature/test-testflight-distribution
test: Bump version to 1.1.14 to test TestFlight internal distribution
2 parents a192139 + f3770bf commit d806a47

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

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

5-
## v1.1.13 (Build XX)
5+
## v1.1.14 (Build 50)
6+
1. Test: Verify TestFlight internal distribution pipeline with explicit build number
7+
2. Improvement: Test automatic distribution to App Store Connect Users group
8+
9+
## v1.1.13 (Build 48)
610
1. Improvement: Optimize TestFlight release pipeline to skip export compliance review
711
2. Improvement: Add explicit internal tester group distribution for immediate availability
812
3. Improvement: Clarify automatic distribution messaging in release workflow

V2er/Config/Version.xcconfig

Lines changed: 2 additions & 2 deletions
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.13
9+
MARKETING_VERSION = 1.1.14
1010

1111
// VERSION_CODE - Internal build number (e.g., 29, 30, 31...)
12-
CURRENT_PROJECT_VERSION = 48
12+
CURRENT_PROJECT_VERSION = 50

fastlane/Fastfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ platform :ios do
8383
skip_submission: true, # Skip beta review for internal testing
8484
distribute_external: false, # Internal testing only (not public beta)
8585
wait_for_uploaded_build: true,
86-
groups: ["App Store Connect Users"], # Auto-distribute to all internal testers
86+
groups: ["Github Actions Internal"], # Auto-distribute to Github Actions Internal group
8787
notify_external_testers: false, # No external notifications
8888
uses_non_exempt_encryption: false # Mark as no encryption to skip export compliance review
8989
)
9090

91-
UI.success("✅ Successfully distributed build to internal testers (App Store Connect Users)!")
91+
UI.success("✅ Successfully distributed build to internal testers (Github Actions Internal)!")
9292
rescue => e
9393
UI.error("Failed to distribute: #{e.message}")
9494
UI.message("You may need to manually distribute the build in App Store Connect")
@@ -203,12 +203,12 @@ platform :ios do
203203
UI.message("📧 Public beta mode: Will notify external testers and submit for beta review")
204204
else
205205
# Internal testing mode - automatically distribute to internal testers
206-
# Uses default "App Store Connect Users" group which includes all internal testers
206+
# Uses "Github Actions Internal" group configured in App Store Connect
207207
upload_params.merge!({
208-
groups: ["App Store Connect Users"], # Auto-distribute to all internal testers
208+
groups: ["Github Actions Internal"], # Auto-distribute to Github Actions Internal group
209209
notify_external_testers: false # No external notifications for internal testing
210210
})
211-
UI.message("👥 Internal testing mode: Will auto-distribute to App Store Connect Users (no beta review required)")
211+
UI.message("👥 Internal testing mode: Will auto-distribute to Github Actions Internal group (no beta review required)")
212212
end
213213

214214
# Upload to TestFlight with automatic distribution

0 commit comments

Comments
 (0)