Skip to content

Commit 5c8435c

Browse files
authored
Publish arrow-optics in Gradle Plugin Portal, take 4 (#3764)
1 parent defdf0f commit 5c8435c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ jobs:
4040
run: ./gradlew publishToMavenCentral -Pversion=${{ github.event.release.name }} -Penable_wasm=true
4141

4242
- name: Publish plug-ins
43-
run: ./gradlew publishPlugins -Pversion=${{ github.event.release.name }} -Penable_wasm=true -Pgradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY_ARROW }} -Pgradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET_ARROW }}
43+
run: ./gradlew publishPlugins -Pversion=${{ github.event.release.name }} -Penable_wasm=true -Pgradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET }}

arrow-libs/optics/arrow-optics-plugin/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
id("com.gradle.plugin-publish") version "2.0.0"
88
}
99

10-
group = "arrow-kt"
10+
group = property("projects.group").toString()
1111

1212
repositories {
1313
gradlePluginPortal()
@@ -65,7 +65,7 @@ gradlePlugin {
6565

6666
plugins {
6767
create("ArrowOpticsPlugin") {
68-
id = "arrow-kt.optics"
68+
id = "io.arrow-kt.optics"
6969
displayName = "ArrowOpticsPlugin"
7070
description = "Arrow Optics for Kotlin (Multiplatform)"
7171
implementationClass = "arrow.optics.plugin.ArrowOpticsPlugin"

0 commit comments

Comments
 (0)