Search Gradle plugins

io.github.bullshit.helmng-publish

Owner: bullshit

Use this plugin to publish charts to a remote chart repository like ChartMuseum.

https://github.com/bullshit/gradle-helmng-plugin

Sources: https://github.com/bullshit/gradle-helmng-plugin

Version 0.1.0 (latest)

Created 07 April 2023.

Use this plugin to publish charts to a remote chart repository like ChartMuseum.

Using the plugins DSL:

plugins {
  id("io.github.bullshit.helmng-publish") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.bullshit.gradle-plugins.helm:helm-publish-plugin:0.1.0")
  }
}

apply(plugin = "io.github.bullshit.helmng-publish")

Using the plugins DSL:

plugins {
  id "io.github.bullshit.helmng-publish" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.bullshit.gradle-plugins.helm:helm-publish-plugin:0.1.0"
  }
}

apply plugin: "io.github.bullshit.helmng-publish"

Learn how to apply plugins to subprojects