Skip to content

Commit 7793932

Browse files
authored
Add maven local publications (#137)
1 parent d858ffd commit 7793932

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.github/workflows/android.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ jobs:
6060
- name: Make Gradle executable
6161
run: chmod +x ./gradlew
6262

63+
- name: Publish to Maven Local (app module requires current version)
64+
run: ./gradlew publishToMavenLocal -x test --no-daemon -PRELEASE_SIGNING_ENABLED=false
65+
6366
- name: Build with Gradle
6467
run: |
6568
./gradlew --scan --stacktrace \
@@ -82,5 +85,8 @@ jobs:
8285
with:
8386
distribution: 'zulu'
8487
java-version: 21
88+
- name: Publish to Maven Local (required for plugin resolution)
89+
run: ./gradlew publishToMavenLocal -x test --no-daemon -PRELEASE_SIGNING_ENABLED=false
90+
8591
- name: compose stability check
8692
run: ./gradlew stabilityCheck

.github/workflows/publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
- name: Grant Permission to Execute Gradle
2323
run: chmod +x gradlew
2424

25+
- name: Publish to Maven Local (required for app module to use current version)
26+
run: ./gradlew publishToMavenLocal -x test --no-daemon -PRELEASE_SIGNING_ENABLED=false
27+
2528
- name: Release build
2629
run: ./gradlew assemble --scan
2730

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ androidGradlePlugin = "8.13.1"
1313
androidxActivity = "1.11.0"
1414
androidxComposeBom = "2025.12.00"
1515
jetbrains-compose = "1.9.3"
16-
compose-stability-analyzer = "0.7.0"
16+
compose-stability-analyzer = "0.7.1"
1717
runtimeAnnotation = "1.9.0"
1818
spotless = "6.21.0"
1919
shadow = "8.1.1"

0 commit comments

Comments
 (0)