earth.cube.github
Owner:
Necromancer
Plugin for creating Github releases and uploading assets.
https://github.com/Cube-Earth/GradlePlugins/tree/master/Root/cube-gradleplugins-github
Sources: https://github.com/Cube-Earth/GradlePlugins/tree/master/Root/cube-gradleplugins-github
Version 1.0.0 (latest)
Created 01 October 2017.
Plugin for creating Github releases and uploading assets.
Add this plugin to your build using the plugins DSL:
plugins {
id("earth.cube.github") version "1.0.0"
}
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("earth.cube.github:earth.cube.github.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("earth.cube.github") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("earth.cube.github:earth.cube.github.gradle.plugin:1.0.0") } } apply(plugin = "earth.cube.github")
- Applying plugins to all subprojects .