diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index b12c4ab..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build - -on: - pull_request: - push: - -jobs: - build-android: - name: Build for Android - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v2 - with: - distribution: 'zulu' - java-version: '17' - - uses: subosito/flutter-action@v2 - with: - channel: 'stable' - - run: flutter pub get - - run: flutter build apk --debug - build-ios: - name: Build for iOS - runs-on: macos-latest - steps: - - uses: actions/checkout@v2 - - uses: subosito/flutter-action@v2 - with: - channel: 'stable' - architecture: x64 - - run: flutter pub get - - run: flutter build ios --release --no-codesign