Skip to content

Commit a99d142

Browse files
author
impri2
committed
fix: remove fastlane debug
1 parent 7bde647 commit a99d142

2 files changed

Lines changed: 0 additions & 34 deletions

File tree

.github/workflows/cd.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,3 @@ jobs:
8383
if: ${{ steps.regex.outputs.group1 == 'testflight' && steps.regex.outputs.group5 == 'release' }}
8484
run: |
8585
bundle exec fastlane beta
86-
- name: Upload dev app to TestFlight
87-
if: ${{ steps.regex.outputs.group1 == 'testflight' && steps.regex.outputs.group5 == 'debug' }}
88-
run: |
89-
bundle exec fastlane beta_debug

fastlane/Fastfile

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -48,37 +48,7 @@ platform :ios do
4848
slack(message:"uploaded to testflight")
4949
# add actions here: https://docs.fastlane.tools/actions
5050
end
51-
lane :beta_debug do
52-
ENV["FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT"] = "120"
53-
setup_ci
54-
app_store_connect_api_key(
55-
key_id:ENV["APPSTORE_CONNECT_KEY_ID"],
56-
issuer_id:ENV["APPSTORE_CONNECT_ISSUER_ID"],
57-
key_content:ENV["APPSTORE_CONNECT_KEY_CONTENT"]
58-
)
5951

60-
match(
61-
type: "appstore",
62-
app_identifier:ENV["BUNDLE_IDENTIFIER_DEV"],
63-
readonly: true
64-
)
65-
66-
update_code_signing_settings(
67-
use_automatic_signing: false,
68-
code_sign_identity: "Apple Distribution",
69-
profile_name:ENV["PROFILE_NAME"],
70-
path:"Siksha.xcodeproj",
71-
bundle_identifier:ENV["BUNDLE_IDENTIFIER_DEV"],
72-
targets:"Siksha-Debug",
73-
team_id:ENV["TEAM_ID"]
74-
)
75-
build_app(project:"Siksha.xcodeproj",scheme:"Siksha-Debug",configuration:"Debug",clean:true, silent:true)
76-
increment_build_number(build_number:ENV["BUILD_NUMBER"],xcodeproj:"Siksha.xcodeproj")
77-
increment_version_number(version_number:ENV["VERSION_NUMBER"],xcodeproj:"Siksha.xcodeproj")
78-
upload_to_testflight(app_version:ENV["VERSION_NUMBER"])
79-
slack(message:"uploaded to testflight")
80-
# add actions here: https://docs.fastlane.tools/actions
81-
end
8252

8353
end
8454

0 commit comments

Comments
 (0)