File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
actions/upload-xcframework-artifact Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 7
7
shell : bash
8
8
run : |
9
9
ditto -c -k --sequesterRsrc --keepParent /Users/runner/work/ldk-swift/ldk-swift/bindings/bin/release/LightningDevKit.xcframework LightningDevKit.xcframework.zip
10
+ - name : Create desymlinked xcframework variant
11
+ shell : bash
12
+ run : |
13
+ cp -r /Users/runner/work/ldk-swift/ldk-swift/bindings/bin/release/LightningDevKit.xcframework /Users/runner/work/ldk-swift/ldk-swift/bindings/bin/release/LightningDevKit-no-symlinks.xcframework
14
+ python3 ./src/scripts/symlink_resolver.py /Users/runner/work/ldk-swift/ldk-swift/bindings/bin/release/LightningDevKit-no-symlinks.xcframework
15
+ ditto -c -k --sequesterRsrc --keepParent /Users/runner/work/ldk-swift/ldk-swift/bindings/bin/release/LightningDevKit-no-symlinks.xcframework LightningDevKit-no-symlinks.xcframework.zip
10
16
- name : Upload Framework Artifact
11
17
uses : actions/upload-artifact@v3
12
18
with :
13
19
name : LightningDevKit
14
- path : LightningDevKit.xcframework.zip
20
+ path : |
21
+ LightningDevKit.xcframework.zip
22
+ LightningDevKit-no-symlinks.xcframework.zip
Original file line number Diff line number Diff line change 66
66
if : ${{ github.event.inputs.tag != null && github.event.inputs.tag != '' }}
67
67
with :
68
68
tag : ${{ github.event.inputs.tag }}
69
- artifacts : LightningDevKit.xcframework.zip
69
+ artifacts : LightningDevKit.xcframework.zip,LightningDevKit-no-symlinks.xcframework.zip
You can’t perform that action at this time.
0 commit comments