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: Project Build MacOs | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| timeout-minutes: 180 | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v4 | |
| - run: | | |
| echo "${{ secrets.KEYSTORE }}" > keystore.jks.asc | |
| gpg -d --passphrase "${{ secrets.KEYSTORE_PASSPHRASE }}" --batch keystore.jks.asc > keystore.jks | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 21 | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Set Xcode version | |
| run: sudo xcode-select -s /Applications/Xcode_15.3.app/Contents/Developer | |
| - name: Configure Keystore | |
| env: | |
| KEYSTORE_KEY_ALIAS: ${{ secrets.KEYSTORE_KEY_ALIAS }} | |
| KEYSTORE_KEY_PASSWORD: ${{ secrets.KEYSTORE_KEY_PASSWORD }} | |
| KEYSTORE_STORE_PASSWORD: ${{ secrets.KEYSTORE_STORE_PASSWORD }} | |
| run: | | |
| echo "storeFile=keystore.jks" >> keystore.properties | |
| echo "keyAlias=$KEYSTORE_KEY_ALIAS" >> keystore.properties | |
| echo "storePassword=$KEYSTORE_STORE_PASSWORD" >> keystore.properties | |
| echo "keyPassword=$KEYSTORE_KEY_PASSWORD" >> keystore.properties | |
| - name: set up LOCAL_PROPERTIES | |
| env: | |
| LOCAL_PROPERTIES: ${{ secrets.LOCAL_PROPERTIES }} | |
| run: echo "$LOCAL_PROPERTIES" > ./local.properties | |
| - name: generate Ksp metadata | |
| run: ./gradlew kspKotlinMetadata | |
| - name: Build with Gradle | |
| run: cd iosApp && xcodebuild -workspace ./iosApp.xcworkspace -scheme iosApp -configuration Debug -destination 'platform=iOS Simulator,OS=latest,name=iPhone 15' CODE_SIGNING_ALLOWED='NO' |