Skip to content

Commit

Permalink
Try a 3rd way to build using Xcode 15
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyrat committed Nov 15, 2023
1 parent e88f837 commit d11b5c8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/flutter_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@ jobs:

- name: Run tests
run: flutter test

- name: Choose xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'

- name: Build iOS App
run: flutter build ios --config-only --release --no-codesign --dart-define KEEVAULT_STAGE=prod --dart-define KEEVAULT_NAME_SUFFIX= --dart-define KEEVAULT_ID_SUFFIX= --dart-define IAP_APPLE_APP_STORE=yes
5 changes: 5 additions & 0 deletions .github/workflows/flutter_release_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ jobs:

- name: Run tests
run: flutter test

- name: Choose xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'

- name: Build iOS App
run: flutter build ios --config-only --release --no-codesign --dart-define KEEVAULT_STAGE=beta --dart-define KEEVAULT_NAME_SUFFIX='(b)' --dart-define KEEVAULT_ID_SUFFIX=.beta
Expand Down
4 changes: 0 additions & 4 deletions ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@ def ensure_temp_keychain(name, password)
create_temp_keychain(name, password)
end

before_all do
xcversion(version: "15.0")
end

platform :ios do

desc "Get IAP development certificates"
Expand Down

0 comments on commit d11b5c8

Please sign in to comment.