Search Gradle plugins

Version 1.3.1

Created 15 September 2021.

Gradle Plugin for Github Actions

Using the plugins DSL:

plugins {
  id("org.nosphere.gradle.github.actions") version "1.3.1"
}

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.3.1")
  }
}

apply(plugin = "org.nosphere.gradle.github.actions")

Using the plugins DSL:

plugins {
  id "org.nosphere.gradle.github.actions" version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.nosphere.gradle.github:gradle-github-actions-plugin:1.3.1"
  }
}

apply plugin: "org.nosphere.gradle.github.actions"

Learn how to apply plugins to subprojects