Update AndroidBuild.yml #14
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: CI/CD | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
androidBuild: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.0 | |
- name: Setup Java SDK | |
uses: actions/setup-java@v3.13.0 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Make gradlew executable | |
run: chmod +x ./gradlew | |
- name: Build Android with Gradle | |
run: ./gradlew :composeApp:assembleDebug | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v3.1.3 | |
with: | |
name: ResistorCalculator-KMP.apk | |
path: app/build/outputs/apk/debug/composeApp-debug.apk | |
# iosBuild: | |
# runs-on: macos-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4.1.0 | |
# | |
# - name: Install Dependencies | |
# run: | | |
# cd ios | |
# pod install | |
# | |
# - name: Build iOS | |
# run: xcodebuild -workspace iosApp.xcworkspace -scheme iosApp -configuration Release -archivePath build/iosApp.xcarchive archive -quiet | |
# | |
# - name: Export iOS IPA | |
# run: xcodebuild -exportArchive -archivePath build/iosApp.xcarchive -exportOptionsPlist exportOptions.plist -exportPath build/ios-ipa -quiet | |
# | |
# - name: Upload iOS IPA | |
# uses: actions/upload-artifact@v3.1.3 | |
# with: | |
# name: ios-ipa | |
# path: composeApp/build/outputs/apk/debug/ios-ipa |