diff --git a/.github/workflows/android_ci.yaml b/.github/workflows/ci.yaml similarity index 84% rename from .github/workflows/android_ci.yaml rename to .github/workflows/ci.yaml index 6d78e61..fc3bb4e 100644 --- a/.github/workflows/android_ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,11 +25,15 @@ jobs: - name: Build APK run: flutter build apk --release - # OR - - name: Build AAB run: flutter build appbundle --release + # - name: Build IOS + # run: flutter build ios --no-codesign + # + # - name: Build Macos + # run: flutter build macos --no-codesign + - name: Upload APK uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/ios_ci.yaml b/.github/workflows/ios_ci.yaml deleted file mode 100644 index 2eac322..0000000 --- a/.github/workflows/ios_ci.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: Build iOS App - -on: - push: - branches: - - feature/mi_card - -jobs: - build: - runs-on: macOS-latest - - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - - - name: Install Dependencies - run: | - xcode-select -p - sudo xcode-select -switch /Applications/Xcode_14.2.app - gem install cocoapods - pod install - - - name: Build App - run: xcodebuild -workspace YourApp.xcworkspace -scheme mi-card -configuration Release \ No newline at end of file