com.fizzpod.github-release
                  Owner:
                  
                    
                    andy.j.dunn
                  
                
Gradle plugin to create a Github release and upload artefacts.
https://github.com/boxheed/gradle-github-release-plugin
Sources: https://github.com/boxheed/gradle-github-release-plugin
Version 0.4.5
Created 18 October 2023.
                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 "0.4.5"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.fizzpod.github-release:com.fizzpod.github-release.gradle.plugin:0.4.5") }It can then be applied in the precompiled script plugin:plugins { id("com.fizzpod.github-release") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.fizzpod.github-release:com.fizzpod.github-release.gradle.plugin:0.4.5") } } apply(plugin = "com.fizzpod.github-release")
- Applying plugins to all subprojects .