Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YumNumm committed Jun 16, 2024
1 parent 23d6d25 commit 26346ed
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions app/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ platform :ios do
key_filepath: "./AuthKey_NGL2W4BQP6.p8"
)
setup_ci if ENV['CI']

increment_build_number(
build_number: latest_testflight_build_number + 1,
xcodeproj: "Runner.xcodeproj",
)
match(
type: "appstore",
readonly: is_ci,
Expand All @@ -76,11 +81,17 @@ platform :ios do
key_filepath: "./AuthKey_NGL2W4BQP6.p8"
)
setup_ci if ENV['CI']

match(
type: "appstore",
readonly: is_ci,
)

increment_build_number(
build_number: latest_testflight_build_number + 1,
xcodeproj: "Runner.xcodeproj",
)

# Build the project
build_app(
archive_path: "../build/ios/archive/Runner.xcarchive",
Expand Down

0 comments on commit 26346ed

Please sign in to comment.