Skip to content

Commit

Permalink
zip
Browse files Browse the repository at this point in the history
  • Loading branch information
SystemKeeper committed Feb 2, 2025
1 parent 17d2d33 commit 61c3ec9
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:
- name: Build iOS WebRTC lib
run: |
mkdir webrtc_ios && cd webrtc_ios
fetch --nohooks webrtc_ios
fetch --nohooks --no-history webrtc_ios
gclient sync
cd src
git checkout -b branch_${{ env.WEBRTC_BRANCH }} branch-heads/${{ env.WEBRTC_BRANCH }}
gclient sync -D
gclient sync -D --no-history
echo "Applying patches..."
pwd
Expand All @@ -60,12 +60,14 @@ jobs:
cd tools_webrtc/ios
python build_ios_libs.py
- name: Generate checksum
run: swift package compute-checksum webrtc_ios/src/out_ios_libs/WebRTC.xcframework
- name: Zip & generate checksum
run: |
zip webrtc_ios/src/out_ios_libs/WebRTC.xcframework.zip webrtc_ios/src/out_ios_libs/WebRTC.xcframework
swift package compute-checksum webrtc_ios/src/out_ios_libs/WebRTC.xcframework.zip
- name: Upload build
uses: actions/upload-artifact@v4
with:
name: WebRTC.xcframework
path: webrtc_ios/src/out_ios_libs/WebRTC.xcframework
path: webrtc_ios/src/out_ios_libs/WebRTC.xcframework.zip
retention-days: 4

0 comments on commit 61c3ec9

Please sign in to comment.