Search Gradle plugins

Version 0.1.0 (latest)

0.1.0

Created 10 September 2023.

A plugin to publish Gradle artifacts to a GitHub release

Add this plugin to your build using the plugins DSL:

plugins {
  id("ca.stellardrift.publish-github-release") version "0.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ca.stellardrift:publish-github-release:0.1.0")
      }
    }
    
    apply(plugin = "ca.stellardrift.publish-github-release")
  • Applying plugins to all subprojects .