Skip to content

Bump com.android.tools.build:gradle from 8.1.4 to 8.2.0 in /android #108

Bump com.android.tools.build:gradle from 8.1.4 to 8.2.0 in /android

Bump com.android.tools.build:gradle from 8.1.4 to 8.2.0 in /android #108

Workflow file for this run

name: Flutter build
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
build_android:
name: Build for Android
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Install Flutter
uses: subosito/flutter-action@v2
- name: Disable analytics
run: flutter config --no-analytics
- name: Flutter pub get
run: flutter pub get
- name: Flutter build appbundle
run: flutter build appbundle --release
build_ios:
name: Build for iOS
runs-on: macos-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Install Flutter
uses: subosito/flutter-action@v2
- name: Disable analytics
run: flutter config --no-analytics
- name: Flutter pub get
run: flutter pub get
- name: Pod install
run: |
cd ios
pod install
- name: Flutter build iOS
run: flutter build ios --release --no-codesign