Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 87db017

Browse files
committed
Merge branch 'develop' of github.com:icerockdev/moko-widgets into #295-publish-plugin-to-gradlePluginPortal
2 parents d5f08fd + 643dc58 commit 87db017

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
uses: actions/setup-java@v1
2626
with:
2727
java-version: 11
28+
- name: Cocoapods install
29+
run: (cd sample/ios-app && pod install)
2830
- name: Publish plugin
2931
run: ./gradlew -p plugin publishMavenJavaPublicationToOSSRHRepository
3032
- name: Publish library

build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ buildscript {
1919
}
2020

2121
allprojects {
22+
23+
plugins.withId("org.gradle.maven-publish") {
24+
group = "dev.icerock.moko"
25+
version = libs.versions.mokoWidgetsVersion.get()
26+
}
27+
2228
configurations
2329
.matching { it.name == "compileOnly" }
2430
.configureEach {

0 commit comments

Comments
 (0)