Merge pull request #552 from winter-love-dev/change-contributor-cmp- #260
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: iOS Arm(Apple Silicon) Build | |
| on: | |
| push: | |
| branches: | |
| - 2025/compose-multiplatform | |
| pull_request: | |
| concurrency: | |
| group: ios-build-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-ios: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-java | |
| - name: Set up XCFramework arch filter | |
| run: echo "arch=ARM64" >> local.properties | |
| - run: make build-app-debug | |
| working-directory: iosApp |