File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -35,12 +35,12 @@ jobs:
35
35
- uses : actions/checkout@v4
36
36
- name : Validate Gradle Wrapper
37
37
uses : gradle/wrapper-validation-action@v1
38
- - uses : actions/cache@v3
38
+ - uses : actions/cache@v4
39
39
with :
40
40
path : ~/.konan
41
41
key : ${{ runner.os }}-${{ hashFiles('**/.lock') }}
42
42
- name : Set up JDK 17
43
- uses : actions/setup-java@v3
43
+ uses : actions/setup-java@v4
44
44
with :
45
45
java-version : ' 17'
46
46
distribution : ' temurin'
49
49
- name : Gradle publish
50
50
run : |
51
51
./gradlew \
52
+ --no-configuration-cache \
52
53
-PGITHUB_PUBLISH_TOKEN="${{ secrets.GITHUB_TOKEN }}" \
53
54
-PsigningInMemoryKey="${{ secrets.SIGNING_KEY }}" \
54
55
-PsigningInMemoryKeyId="${{ secrets.SIGNING_KEY_ID }}" \
@@ -66,12 +67,12 @@ jobs:
66
67
- uses : actions/checkout@v4
67
68
- name : Validate Gradle Wrapper
68
69
uses : gradle/wrapper-validation-action@v1
69
- - uses : actions/cache@v3
70
+ - uses : actions/cache@v4
70
71
with :
71
72
path : ~/.konan
72
73
key : ${{ runner.os }}-${{ hashFiles('**/.lock') }}
73
74
- name : Set up JDK 17
74
- uses : actions/setup-java@v3
75
+ uses : actions/setup-java@v4
75
76
with :
76
77
java-version : ' 17'
77
78
distribution : ' temurin'
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ kotlin.code.style=official
2
2
xcodeproj =./iosApp
3
3
android.useAndroidX =true
4
4
org.gradle.caching =true
5
+ org.gradle.configuration-cache =true
5
6
org.gradle.jvmargs =-Xmx3g
6
7
org.jetbrains.compose.experimental.jscanvas.enabled =true
7
8
org.jetbrains.compose.experimental.macos.enabled =true
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ kotlin.code.style=official
2
2
# Gradle
3
3
org.gradle.jvmargs =-Xmx2048M -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\="-Xmx2048M"
4
4
org.gradle.caching =true
5
+ org.gradle.configuration-cache =true
5
6
# Compose
6
7
org.jetbrains.compose.experimental.uikit.enabled =true
7
8
# Android
You can’t perform that action at this time.
0 commit comments