File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
macos :
10
10
name : Build XCFramework
11
- runs-on : macos-latest
11
+ runs-on : macos-15
12
+ env :
13
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
12
14
steps :
13
15
- name : Checkout
14
16
uses : actions/checkout@v4
17
+ with :
18
+ submodules : recursive
15
19
- name : Generate Xcode project
16
20
run : swift package --disable-sandbox tuist generate -p Projects/ --no-open
17
21
- name : Archive & Create XCFramework
75
79
7z a -tzip -mx=9 P256K.xcframework.zip P256K.xcframework
76
80
- name : Upload XCFramework
77
81
run : |
78
- gh release upload ${{ github.ref_name }} P256K.xcframework.zip
82
+ gh release upload ${{ github.ref_name }} P256K.xcframework.zip
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ let project = Project(
87
87
. target( name: " P256K " )
88
88
] ,
89
89
settings: . settings(
90
+ base: [ " ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME " : " " ] ,
90
91
configurations: [
91
92
. debug( name: " Debug " , xcconfig: " Resources/XCFrameworkApp/Debug.xcconfig " ) ,
92
93
. release( name: " Release " , xcconfig: " Resources/XCFrameworkApp/Release.xcconfig " )
You can’t perform that action at this time.
0 commit comments