com.robothy.github-repository-release-plugin
Owner: robothy luo
Automaticall update gradle project version. Add tag and push to remote github repository.
https://github.com/Robothy/github-repository-release-plugin
Sources: https://github.com/Robothy/github-repository-release-plugin
Version 1.3 (latest)
1.3
Created 18 February 2023.
Automaticall update gradle project version. Add tag and push to remote github repository.
Using the plugins DSL:
plugins {
id("com.robothy.github-repository-release-plugin") version "1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.robothy:github-repository-release-gradle-plugin:1.3")
}
}
apply(plugin = "com.robothy.github-repository-release-plugin")
Using the plugins DSL:
plugins {
id "com.robothy.github-repository-release-plugin" version "1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.robothy:github-repository-release-gradle-plugin:1.3"
}
}
apply plugin: "com.robothy.github-repository-release-plugin"