org.nosphere.gradle.github.actions
所有者: 保罗·梅林
Gradle用于Github Actions的插件
https://github.com/eskatos/gradle-github-actions-plugin
源代码: https://github.com/eskatos/gradle-github-actions-plugin
使用 插件DSL
plugins {
id("org.nosphere.gradle.github.actions") version "1.4.0"
}
使用 旧版插件应用方式
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("org.nosphere.gradle.github:gradle-github-actions-plugin:1.4.0")
}
}
apply(plugin = "org.nosphere.gradle.github.actions")
使用 插件DSL
plugins {
id "org.nosphere.gradle.github.actions" version "1.4.0"
}
使用 旧版插件应用方式
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "org.nosphere.gradle.github:gradle-github-actions-plugin:1.4.0"
}
}
apply plugin: "org.nosphere.gradle.github.actions"