Skip to content

Commit f69496e

Browse files
committed
Debug CI/CD Pipeline V3
1 parent 2ba704b commit f69496e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/deploy_beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/setup-java@v3
2525
with:
2626
distribution: 'corretto'
27-
java-version: '17'
27+
java-version: '21'
2828

2929
- name: Setup Flutter
3030
uses: subosito/flutter-action@v2

.github/workflows/lint_test_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
uses: actions/setup-java@v3
3838
with:
3939
distribution: 'corretto'
40-
java-version: '17'
40+
java-version: '21'
4141

42-
- name: Build iOS
43-
run: flutter build ipa --no-codesign
42+
# - name: Build iOS
43+
# run: flutter build ipa --no-codesign
4444

4545
- name: Build Android
4646
run: flutter build apk

android/app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ android {
1616
ndkVersion = "28.1.13356709"
1717

1818
compileOptions {
19-
sourceCompatibility = JavaVersion.VERSION_17
20-
targetCompatibility = JavaVersion.VERSION_17
19+
sourceCompatibility = JavaVersion.VERSION_21
20+
targetCompatibility = JavaVersion.VERSION_21
2121
}
2222

2323
kotlin {
2424
compilerOptions {
25-
jvmTarget.set(JvmTarget.JVM_17)
25+
jvmTarget.set(JvmTarget.JVM_21)
2626
}
2727
}
2828

0 commit comments

Comments
 (0)