org.nosphere.gradle.github.actions
Owner:
Paul Merlin
Gradle Plugin for Github Actions
https://github.com/eskatos/gradle-github-actions-plugin
Using the plugins DSL:
plugins {
id("org.nosphere.gradle.github.actions") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.nosphere.gradle.github:gradle-github-actions-plugin:1.2.0")
}
}
apply(plugin = "org.nosphere.gradle.github.actions")
Using the plugins DSL:
plugins {
id "org.nosphere.gradle.github.actions" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.nosphere.gradle.github:gradle-github-actions-plugin:1.2.0"
}
}
apply plugin: "org.nosphere.gradle.github.actions"