File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,19 @@ jobs:
29
29
cd ..
30
30
}
31
31
32
- cd build/MobileVLCKit.xcframework/ios-arm64_armv7_armv7s/MobileVLCKit.framework
32
+ CPU_DEVICE_DIR="ios-arm64"
33
+ CPU_SIM_DIR="ios-arm64_x86_64-simulator"
34
+
35
+ cd build/MobileVLCKit.xcframework
36
+
37
+ cd "$CPU_DEVICE_DIR/MobileVLCKit.framework"
33
38
patchBinary
34
- cd ios-arm64_i386_x86_64-simulator /MobileVLCKit.framework
39
+ cd "$CPU_SIM_DIR /MobileVLCKit.framework"
35
40
patchBinary
36
41
mkdir -p $GITHUB_WORKSPACE/build/ios-device
37
42
mkdir -p $GITHUB_WORKSPACE/build/ios-simulator
38
- mv ios-arm64_armv7_armv7s /DynamicMobileVLCKit.framework $GITHUB_WORKSPACE/build/ios-device
39
- mv ios-arm64_i386_x86_64-simulator /DynamicMobileVLCKit.framework $GITHUB_WORKSPACE/build/ios-simulator
43
+ mv "$CPU_DEVICE_DIR /DynamicMobileVLCKit.framework" " $GITHUB_WORKSPACE/build/ios-device"
44
+ mv "$CPU_SIM_DIR /DynamicMobileVLCKit.framework" " $GITHUB_WORKSPACE/build/ios-simulator"
40
45
- name : Setup NuGet
41
46
uses : nuget/setup-nuget@v1
42
47
with :
You can’t perform that action at this time.
0 commit comments