Skip to content

Commit

Permalink
Add 'none' option to version bumping.
Browse files Browse the repository at this point in the history
This avoids long Test Flight reviews for incremental build releases. This according to Apple:

"A review is only required for the first build of a version and subsequent builds may not need a full review. Testing can begin once a build is approved." .

https://developer.apple.com/help/app-store-connect/test-a-beta-version/testflight-overview/

Signed-off-by: Dan Cunningham <[email protected]>
  • Loading branch information
digitaldan committed Sep 11, 2024
1 parent b662b32 commit a71a864
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
type: choice
description: 'Select version bump type:'
options:
- none
- patch
- minor
- major
Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ platform :ios do

type = options[:bump]

if !options[:isfeaturebuild]
if !options[:isfeaturebuild] && type != 'none'
increment_version_number_in_xcodeproj(
bump_type: type,
xcodeproj: 'openHAB.xcodeproj',
Expand Down

0 comments on commit a71a864

Please sign in to comment.