io.github.itzg.github-releaser
Owner: Geoff Bourne
Uploads application artifacts to GitHub release and publishes application manifests
https://github.com/itzg/github-releaser-gradle-plugin
Sources: https://github.com/itzg/github-releaser-gradle-plugin
Version 0.1.1 (latest)
0.1.1
Created 23 October 2022.
Uploads application artifacts to GitHub release and publishes application manifests
Using the plugins DSL:
plugins {
id("io.github.itzg.github-releaser") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.itzg:github-releaser-gradle-plugin:0.1.1")
}
}
apply(plugin = "io.github.itzg.github-releaser")
Using the plugins DSL:
plugins {
id "io.github.itzg.github-releaser" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.itzg:github-releaser-gradle-plugin:0.1.1"
}
}
apply plugin: "io.github.itzg.github-releaser"