Add output_audio_buffer.started and output_audio_buffer.stopped serve… #37
This file contains hidden or 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: | |
| branches: [main] | |
| jobs: | |
| build: | |
| name: Swift 6.0 | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Build | |
| run: ./.github/build.sh | |
| - run: zip -r ./OpenAIRealtime.xcframework.zip ./OpenAIRealtime.xcframework | |
| - name: Upload artifact to Emerge | |
| uses: EmergeTools/[email protected] | |
| with: | |
| build_type: release | |
| artifact_path: ./OpenAIRealtime.xcframework.zip | |
| emerge_api_key: ${{ secrets.EMERGE_API_KEY }} |