ca.stellardrift.publish-github-release
Owner: zml
A plugin to publish Gradle artifacts to a GitHub release
https://publish-github-release.stellardrift.ca
Sources: https://github.com/zml2008/publish-github-release
Version 0.1.0 (latest)
0.1.0
Created 10 September 2023.
A plugin to publish Gradle artifacts to a GitHub release
Using the plugins DSL:
plugins {
id("ca.stellardrift.publish-github-release") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ca.stellardrift:publish-github-release:0.1.0")
}
}
apply(plugin = "ca.stellardrift.publish-github-release")
Using the plugins DSL:
plugins {
id "ca.stellardrift.publish-github-release" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ca.stellardrift:publish-github-release:0.1.0"
}
}
apply plugin: "ca.stellardrift.publish-github-release"