Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
quetool committed Jul 17, 2024
1 parent 3e6e04d commit 9c6f8df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release_wallet_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
12 changes: 1 addition & 11 deletions example/dapp/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}",
Expand All @@ -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}",
Expand Down

0 comments on commit 9c6f8df

Please sign in to comment.