Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- "Release-*"

jobs:
testflight:
release:

runs-on: macos-latest

Expand Down
11 changes: 9 additions & 2 deletions AIProject/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@ platform :ios do
lock_when_sleeps: false
)

increment_build_number
latest = latest_testflight_build_number(
app_identifier: "com.est.ico",
version: version
)

increment_build_number(
build_number: latest + 1
)

match(
type: "appstore",
Expand Down Expand Up @@ -76,7 +83,7 @@ platform :ios do
lock_when_sleeps: false
)

increment_build_number
increment_build_number

match(
type: "appstore",
Expand Down
Loading