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 2.0.4 (latest)
2.0.4
Created 05 November 2024.
Gradle plugin to create a Github release and upload artefacts.
Using the plugins DSL:
plugins {
id("com.fizzpod.github-release") version "2.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.fizzpod:gradle-github-release-plugin:2.0.4")
}
}
apply(plugin = "com.fizzpod.github-release")
Using the plugins DSL:
plugins {
id "com.fizzpod.github-release" version "2.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.fizzpod:gradle-github-release-plugin:2.0.4"
}
}
apply plugin: "com.fizzpod.github-release"