You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 11, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,10 @@ You can specify a subset of the platforms to build using the `--platform` option
63
63
swift create-xcframework --platform ios --platform macos ...
64
64
```
65
65
66
+
#### Catalyst
67
+
68
+
You can build your XCFrameworks with support for Mac Catalyst by specifying `--platform maccatalyst` on the command line. As you can't include or exclude Catalyst support in your `Package.swift` we don't try to build it automatically.
69
+
66
70
### Choosing Products
67
71
68
72
Because we wrap `xcodebuild`, you can actually build XCFrameworks from anything that will be mapped to an Xcode project as a Framework target. This includes all of the dependencies your Package has.
@@ -126,7 +130,7 @@ jobs:
126
130
- uses: actions/checkout@v2
127
131
128
132
- name: Create XCFramework
129
-
uses: unsignedapps/swift-create-xcframework@v1
133
+
uses: unsignedapps/swift-create-xcframework@v1.3
130
134
131
135
# Create a release
132
136
# Upload those artifacts to the release
@@ -137,7 +141,7 @@ jobs:
137
141
You can install using mint:
138
142
139
143
```shell
140
-
mint install unsignedapps/swift-create-xcframework@1.0.5
144
+
mint install unsignedapps/swift-create-xcframework@1.3.0
0 commit comments