From aa13565cc9f121898f21ef6a4525ba2792d5602c Mon Sep 17 00:00:00 2001 From: Pascal Knecht Date: Sun, 8 Sep 2024 18:19:56 +0200 Subject: [PATCH] Fix plugin publication --- .github/workflows/publishConnectorPlugin.yml | 2 +- connector-plugin/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publishConnectorPlugin.yml b/.github/workflows/publishConnectorPlugin.yml index afd1b03..cf7f303 100644 --- a/.github/workflows/publishConnectorPlugin.yml +++ b/.github/workflows/publishConnectorPlugin.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: jobs: - build: + publish: runs-on: ubuntu-latest timeout-minutes: 10 steps: diff --git a/connector-plugin/build.gradle.kts b/connector-plugin/build.gradle.kts index 5f7c6ea..12ab555 100644 --- a/connector-plugin/build.gradle.kts +++ b/connector-plugin/build.gradle.kts @@ -24,7 +24,7 @@ gradlePlugin { description = "Small helper plugin that is injected into existing Gradle projects to analyse the dependency structure." tags = listOf("dependencyAnalyser", "gradleBuild", "mermaid") - implementationClass = "ch.addere.dga.connectorplugin.ConnectorPlugin.kt" + implementationClass = "ch.addere.dga.connectorplugin.ConnectorPlugin" } } }