Skip to content

modmuss50/gradle-actions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

This is a fork of MrRamych's work, just edited to use java 8

Github Actions for Gradle

Execute Gradle task using wrapper.

Usage

To create action in visual editor use modmuss50/gradle-actions@master repo.

The args represent the task to be executed.

Example

An example main.workflow file to run tests on push.

workflow "Push" {
  on = "push"
  resolves = ["Build"]
}

action "Build" {
  uses = "modmuss50/gradle-actions@master"
  args = "build"
}

About

Github Actions for Gradle

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 91.7%
  • Shell 8.3%