Skip to content

Commit 1a13484

Browse files
authored
build fix (#43)
* build fix * list platform * bump to 18.3 * use select and install * another fix attempt
1 parent a6c5033 commit 1a13484

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ jobs:
4040
run: |
4141
echo "${{ secrets.GOOGLE_SERVICES }}" | base64 --decode > "Django Files/GoogleService-Info.plist"
4242
43+
- name: "Install iOS 18.3 Platform"
44+
run: |
45+
sudo xcode-select --switch /Applications/Xcode_16.4.app
46+
# sudo xcodebuild -downloadPlatform iOS
47+
# sudo xcodebuild -downloadPlatform iOS -platform iOS -version 18.4
48+
4349
- name: "Fastlane ${{ env.command }}"
4450
run: fastlane ${{ env.command }}
4551
env:

.github/workflows/tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ jobs:
3333
run: |
3434
echo "${{ secrets.GOOGLE_SERVICES }}" | base64 --decode > "Django Files/GoogleService-Info.plist"
3535
36+
- name: "Install iOS 18.3 Platform"
37+
run: |
38+
sudo xcode-select --switch /Applications/Xcode_16.4.app
39+
# sudo xcodebuild -downloadPlatform iOS
40+
# sudo xcodebuild -downloadPlatform iOS -platform iOS -version 18.4
41+
3642
- name: "Fastlane Tests"
3743
run: fastlane tests
3844
env:

Django Files.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,7 @@
466466
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
467467
INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait";
468468
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
469+
IPHONEOS_DEPLOYMENT_TARGET = 18.0;
469470
LD_RUNPATH_SEARCH_PATHS = (
470471
"$(inherited)",
471472
"@executable_path/Frameworks",
@@ -512,6 +513,7 @@
512513
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
513514
INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait";
514515
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
516+
IPHONEOS_DEPLOYMENT_TARGET = 18.0;
515517
LD_RUNPATH_SEARCH_PATHS = (
516518
"$(inherited)",
517519
"@executable_path/Frameworks",

0 commit comments

Comments
 (0)