Skip to content

chore: fix up API prefixes to match other SDKs (#44) #188

chore: fix up API prefixes to match other SDKs (#44)

chore: fix up API prefixes to match other SDKs (#44) #188

Workflow file for this run

name: Build
on:
push:
jobs:
tests:
name: Test the SDK with a Demo App
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run tests
run: "./scripts/run-tests.sh"
build:
name: Build Artifacts
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v3
- name: "Build tvOS XCFramework"
run: "./scripts/create-dynamic-framework-tvos.sh"
- name: "Upload tvOS XCFramework"
uses: actions/upload-artifact@v3
with:
name: "MuxStatsGoogleIMAPluginTVOS.xcframework.zip"
path: "MuxStatsGoogleIMAPluginTVOS.xcframework.zip"
- name: "Build iOS XCFramework"
run: "./scripts/create-dynamic-framework-ios.sh"
- name: "Upload iOS XCFramework"
uses: actions/upload-artifact@v3
with:
name: "MuxStatsGoogleIMAPlugin.xcframework.zip"
path: "MuxStatsGoogleIMAPlugin.xcframework.zip"