File tree Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -70,13 +70,14 @@ jobs:
70
70
- uses : maxim-lobanov/setup-xcode@v1
71
71
with :
72
72
xcode-version : 16.4
73
- - run : brew install ninja
74
- - run : ./build.${{ matrix.name }}.sh "${{ github.event.inputs.commitHash }}"
73
+ - name : Build
74
+ id : build
75
+ run : ./build.${{ matrix.name }}.sh "${{ github.event.inputs.commitHash }}"
75
76
- name : Upload Artifact
76
77
uses : actions/upload-artifact@v4
77
78
with :
78
- name : ${{ matrix.name == 'apple_prefixed' && 'LiveKitWebRTC.xcframework.zip' || 'WebRTC .xcframework.zip' }}
79
- path : build/_package/${{ matrix.name }}/* .xcframework.zip
79
+ name : ${{ steps.build.outputs.framework_name }} .xcframework.zip
80
+ path : build/_package/${{ matrix.name }}/${{ steps.build.outputs.framework_name }} .xcframework.zip
80
81
build-linux :
81
82
defaults :
82
83
run :
Original file line number Diff line number Diff line change @@ -147,9 +147,6 @@ zip --symlinks -9 -r $FRAMEWORK_NAME.xcframework.zip $FRAMEWORK_NAME.xcframework
147
147
148
148
end_group
149
149
150
- start_group " Checksum"
151
-
152
- shasum -a 256 $FRAMEWORK_NAME .xcframework.zip > $FRAMEWORK_NAME .xcframework.zip.shasum
153
- cat $FRAMEWORK_NAME .xcframework.zip.shasum
154
-
155
- end_group
150
+ if [ " $CI " = " true" ]; then
151
+ echo " framework_name=$FRAMEWORK_NAME " >> $GITHUB_OUTPUT
152
+ fi
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ cd `dirname $0`
6
6
python3 run.py build apple --commit " $1 " --webrtc-fetch
7
7
8
8
export PATH=" $PWD /_source/apple/depot_tools:$PATH "
9
- . apple/xcframework.sh.sh release _source/apple/webrtc/src _package/apple
9
+ . apple/xcframework.sh release _source/apple/webrtc/src _package/apple
You can’t perform that action at this time.
0 commit comments