Skip to content

Commit e932a6a

Browse files
ci: improve pipeline
1 parent aa20c8a commit e932a6a

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/base.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ on:
1414
jobs:
1515
build:
1616
runs-on: macos-latest
17-
strategy:
18-
fail-fast: false
19-
matrix:
20-
channel: [stable]
2117

2218
steps:
2319
- uses: actions/checkout@v3
@@ -30,7 +26,7 @@ jobs:
3026
- name: Flutter action
3127
uses: subosito/flutter-action@v2
3228
with:
33-
channel: ${{ matrix.channel }}
29+
channel: 'stable'
3430

3531
- name: Install dependencies
3632
run: flutter pub get

example/android/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77

88
dependencies {
9-
classpath 'com.android.tools.build:gradle:4.1.0'
9+
classpath 'com.android.tools.build:gradle:7.1.2'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111
}
1212
}
@@ -21,8 +21,6 @@ allprojects {
2121
rootProject.buildDir = '../build'
2222
subprojects {
2323
project.buildDir = "${rootProject.buildDir}/${project.name}"
24-
}
25-
subprojects {
2624
project.evaluationDependsOn(':app')
2725
}
2826

0 commit comments

Comments
 (0)