diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 15d2fb90..2b8ea68a 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -8,20 +8,17 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-java@v2 - with: - distribution: 'zulu' - java-version: '11' - uses: subosito/flutter-action@v2 - with: - flutter-version: '3.16.9' + with: + channel: 'stable' + architecture: x64 - name: Install dependencies run: flutter pub get - name: Generate l10n run: flutter gen-l10n - name: Build ios - run: flutter build ipa --no-codesign + run: flutter build ios --release --no-codesign