Skip to content

Commit

Permalink
Change Xcframework zip name
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacakakpo1 committed Mar 10, 2024
1 parent c726855 commit 8ff8fea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-with-kmm-bridge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:


- name: Zip XCFramework
run: zip -r ${{ steps.autoversion.outputs.nextVersion }}.zip /Users/runner/work/janus-message-sdk/janus-message-sdk/shared/build/cocoapods/publish/release
run: zip -r JanusMessageSdk.xcframework.zip /Users/runner/work/janus-message-sdk/janus-message-sdk/shared/build/cocoapods/publish/release

- name: Upload Artifact
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -130,8 +130,8 @@ jobs:
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ steps.autoversion.outputs.nextVersion }}.zip
asset_name: ${{ steps.autoversion.outputs.nextVersion }}.zip
asset_path: JanusMessageSdk.xcframework.zip
asset_name: JanusMessageSdk.xcframework.zip
asset_content_type: application/zip


Expand Down
2 changes: 1 addition & 1 deletion shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ kotlin {
version = "0.7.2"
license = "{ :type => 'MIT', :file => 'LICENSE' }"
authors = "{ 'Telnyx' => '[email protected]' }"
source = "{ :git => 'https://github.com/team-telnyx/janus-message-sdk.git', :tag => '#{spec.version}' }"
source = "{ :http => 'https://github.com/team-telnyx/janus-message-sdk/releases/download/0.7.10/JanusMessageSdk.xcframework.zip', :type => 'zip' }"
ios.deploymentTarget = "14.1"
podfile = project.file("../iosApp/Podfile")
framework {
Expand Down

0 comments on commit 8ff8fea

Please sign in to comment.