搜索Gradle插件

版本 1.4.0 (最新)

1.4.0

创建于2023年10月17日。

Gradle用于Github Actions的插件

使用 插件DSL

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

使用 旧版插件应用方式

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.nosphere.gradle.github:gradle-github-actions-plugin:1.4.0")
  }
}

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

使用 插件DSL

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

使用 旧版插件应用方式

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

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

学习如何将插件应用于子项目