컨트리뷰터 정보 수정 #259
Workflow file for this run
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 x64(Intel) Build | |
| on: | |
| push: | |
| branches: | |
| - 2025/compose-multiplatform | |
| pull_request: | |
| concurrency: | |
| group: ios-build-intel-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-ios: | |
| runs-on: macos-13 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-java | |
| - name: Set up XCFramework arch filter | |
| run: echo "arch=X86_64" >> local.properties | |
| - run: make build-app-debug-x64 | |
| working-directory: iosApp |