Skip to content

Commit c1b44e7

Browse files
authored
Merge pull request #156 from p-x9/fix/xcode-16-release
Fix release process on Xcode16
2 parents 9443b10 + 72f4fea commit c1b44e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88

99
env:
10-
DEVELOPER_DIR: /Applications/Xcode_16.0.app
10+
DEVELOPER_DIR: /Applications/Xcode_16.2.app
1111

1212
jobs:
1313
build:
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Select Xcode 16
21-
run: sudo xcode-select -s /Applications/Xcode_16.0.app
21+
run: sudo xcode-select -s /Applications/Xcode_16.2.app
2222

2323
- name: Install visionOS
2424
run: |

scripts/xcframework.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ archive_project() {
7373
-archivePath "$ARCHIVE_PATH" \
7474
-derivedDataPath "$DERIVED_DATA_PATH" \
7575
SKIP_INSTALL=NO BUILD_LIBRARY_FOR_DISTRIBUTION=YES DEFINES_MODULE=YES \
76-
FRAMEWORK_SEARCH_PATHS=\"$(pwd)/XCFrameworks/"$PLATFORM"/**\" \
76+
FRAMEWORK_SEARCH_PATHS=\"$(pwd)/XCFrameworks/"$PLATFORM"/\" \
7777
OTHER_LDFLAGS="$OTHER_LDFLAGS"
7878

7979
local BUILD_PRODUCTS_PATH=".build/Build/Intermediates.noindex/ArchiveIntermediates/$SCHEME/BuildProductsPath"

0 commit comments

Comments
 (0)