mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-31 10:00:01 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			875 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			875 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: "Gradle Command"
 | |
| description: 'Execute Gradle Command Line'
 | |
| author: 'Paul Merlin <paul@nospere.org>'
 | |
| 
 | |
| # https://help.github.com/en/articles/metadata-syntax-for-github-actions
 | |
| 
 | |
| inputs:
 | |
|   wrapper-directory:
 | |
|     description: Path to the Gradle Wrapper directory
 | |
|     required: false
 | |
|   gradle-executable:
 | |
|     description: Path to the Gradle executable
 | |
|     required: false
 | |
|   gradle-version:
 | |
|     description: Gradle version to use
 | |
|     required: false
 | |
|   build-root-directory:
 | |
|     description: Path to the root directory of the build
 | |
|     required: false
 | |
|   arguments:
 | |
|     description: Gradle command line arguments, see gradle --help
 | |
|     required: false
 | |
| 
 | |
| outputs:
 | |
|   build-scan-url:
 | |
|     description: Link to the build scan if any
 | |
| 
 | |
| runs:
 | |
|   using: 'node12'
 | |
|   main: 'dist/main/index.js'
 | |
|   post: 'dist/post/index.js'
 | |
|   post-if: success()
 | |
| 
 | |
| branding:
 | |
|   icon: 'box'
 | |
|   color: 'gray-dark'
 | 
