io.github.nefilim.gradle.github-actions-generator-plugin
所有者: Peter van Rensburg
Github Actions 工作流生成器
https://github.com/nefilim/gradle-github-actions-generator-plugin
源代码: https://github.com/nefilim/gradle-github-actions-generator-plugin.git
使用 插件DSL
plugins {
id("io.github.nefilim.gradle.github-actions-generator-plugin") version "0.3.3"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.nefilim.gradle:github-actions-generator-plugin:0.3.3")
}
}
apply(plugin = "io.github.nefilim.gradle.github-actions-generator-plugin")
使用 插件DSL
plugins {
id "io.github.nefilim.gradle.github-actions-generator-plugin" version "0.3.3"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.nefilim.gradle:github-actions-generator-plugin:0.3.3"
}
}
apply plugin: "io.github.nefilim.gradle.github-actions-generator-plugin"