diff --git a/.github/workflows/release_wallet_ios.yml b/.github/workflows/release_wallet_ios.yml index be9b371..4c9fd88 100644 --- a/.github/workflows/release_wallet_ios.yml +++ b/.github/workflows/release_wallet_ios.yml @@ -8,7 +8,7 @@ on: jobs: build: - if: github.event.pull_request.merged == true + if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' runs-on: macos-latest-xlarge steps: @@ -58,7 +58,8 @@ jobs: FULL_VERSION=${PARTS[1]} VERSION_NUMBER=(${FULL_VERSION//-/ }) - flutter build ipa --build-name $VERSION_NUMBER --dart-define="PROJECT_ID=$PROJECT_ID" --release + # flutter build ipa --build-name $VERSION_NUMBER --dart-define="PROJECT_ID=$PROJECT_ID" --release + flutter build ios --build-name $VERSION_NUMBER --dart-define="PROJECT_ID=$PROJECT_ID" --config-only --release # Fastlane - name: Fastlane diff --git a/example/dapp/ios/fastlane/Fastfile b/example/dapp/ios/fastlane/Fastfile index 77b2f34..603470e 100644 --- a/example/dapp/ios/fastlane/Fastfile +++ b/example/dapp/ios/fastlane/Fastfile @@ -62,13 +62,7 @@ platform :ios do in_house: false, ) - puts "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%" - puts "app_identifier #{app_identifier}" - puts "match_git_url #{options[:match_git_url]}" - puts "git_basic_authorization #{options[:token]}" - puts "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%" - - _match_result = match( + match( readonly: false, type: "appstore", app_identifier: "#{app_identifier}", @@ -80,10 +74,6 @@ platform :ios do force_for_new_certificates: true, verbose: true, ) - - puts "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%" - puts "match_result #{_match_result}" - puts "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%" number = latest_testflight_build_number( app_identifier: "#{app_identifier}",