org.nosphere.gradle.github.actions
Owner: Paul Merlin
Gradle Plugin for Github Actions
https://github.com/eskatos/gradle-github-actions-plugin
Sources: https://github.com/eskatos/gradle-github-actions-plugin
Version 1.4.0 (latest)
1.4.0
Created 17 October 2023.
Gradle Plugin for Github Actions
Using the plugins DSL:
plugins {
id("org.nosphere.gradle.github.actions") version "1.4.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.4.0")
}
}
apply(plugin = "org.nosphere.gradle.github.actions")
Using the plugins DSL:
plugins {
id "org.nosphere.gradle.github.actions" version "1.4.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.4.0"
}
}
apply plugin: "org.nosphere.gradle.github.actions"