docs: address wording comments #193
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |