From ddfd773027db60b329a27b7bad88e00687f91453 Mon Sep 17 00:00:00 2001 From: CloudWebRTC Date: Thu, 31 Oct 2024 18:12:25 +0800 Subject: [PATCH] Update webrtc-builds.yml --- .github/workflows/webrtc-builds.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/webrtc-builds.yml b/.github/workflows/webrtc-builds.yml index 80e643d9f8..996612444d 100644 --- a/.github/workflows/webrtc-builds.yml +++ b/.github/workflows/webrtc-builds.yml @@ -37,8 +37,8 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v3 with: - name: webrtc-builds - path: build/WebRTC.xcframework.zip* + name: webrtc-xcframework + path: build/out-release/WebRTC.xcframework.zip* release: name: Release to GH (Draft) @@ -55,5 +55,10 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v3 with: - name: webrtc-builds - path: ${{ github.workspace }}/xcframework_dynamic_build.sh + name: webrtc-xcframework + path: ${{ github.workspace }}/webrtc-xcframework + + - name: Create draft release + run: | + gh release create ${{ github.ref_name }} --draft --title "${{ github.ref_name }}" + gh release upload ${{ github.ref_name }} ${{ github.workspace }}/webrtc-xcframework/*