Search Gradle plugins

Version 2.1.1 (latest)

2.1.1

Created 04 December 2024.

Gradle plugin to create a Github release and upload artefacts.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.fizzpod.github-release") version "2.1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.fizzpod:gradle-github-release-plugin:2.1.1")
      }
    }
    
    apply(plugin = "com.fizzpod.github-release")
  • Applying plugins to all subprojects .