Skip to content

Commit 8a28dce

Browse files
committed
Add comment why no-configuration-cache is needed.
1 parent c2f353d commit 8a28dce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ jobs:
8282
java-version: '17'
8383

8484
- name: Publish Core Module to Maven Central
85-
run: ./gradlew :decimal-formatter-core:publishToMavenCentral
85+
run: ./gradlew :decimal-formatter-core:publishToMavenCentral --no-configuration-cache # Publishing releases to Maven Central is not supported yet with configuration caching enabled, because of this missing Gradle feature: https://github.com/gradle/gradle/issues/22779
8686

8787
- name: Publish Compose Module to Maven Central
88-
run: ./gradlew :decimal-formatter-compose:publishToMavenCentral
88+
run: ./gradlew :decimal-formatter-compose:publishToMavenCentral --no-configuration-cache # Publishing releases to Maven Central is not supported yet with configuration caching enabled, because of this missing Gradle feature: https://github.com/gradle/gradle/issues/22779
8989

9090
- name: Verify Publications
9191
run: |

0 commit comments

Comments
 (0)