io.github.nefilim.gradle.github-actions-generator-plugin
Owner: Peter van Rensburg
Github Actions Workflow Generator
https://github.com/nefilim/gradle-github-actions-generator-plugin
Sources: https://github.com/nefilim/gradle-github-actions-generator-plugin.git
Version 0.3.3 (latest)
0.3.3
Created 19 April 2022.
Github Actions Workflow Generator
Using the plugins DSL:
plugins {
id("io.github.nefilim.gradle.github-actions-generator-plugin") version "0.3.3"
}
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.3.3")
}
}
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.3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.nefilim.gradle:github-actions-generator-plugin:0.3.3"
}
}
apply plugin: "io.github.nefilim.gradle.github-actions-generator-plugin"