Search Gradle plugins

Version 0.0.6

Created 03 March 2022.

Github Actions Workflow Generator

Using the plugins DSL:

plugins {
  id("io.github.nefilim.gradle.github-actions-generator-plugin") version "0.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.nefilim.gradle:github-actions-generator-plugin:0.0.6")
  }
}

apply(plugin = "io.github.nefilim.gradle.github-actions-generator-plugin")

Using the plugins DSL:

plugins {
  id "io.github.nefilim.gradle.github-actions-generator-plugin" version "0.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.nefilim.gradle:github-actions-generator-plugin:0.0.6"
  }
}

apply plugin: "io.github.nefilim.gradle.github-actions-generator-plugin"

Learn how to apply plugins to subprojects