mirror of
				https://hub.gitmirror.com/https://github.com/gradle/gradle-build-action
				synced 2025-10-31 10:00:07 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			378 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			378 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: 'Build and upload distribution'
 | |
| # Builds the action distribution an uploads as an artifact for later download
 | |
| runs:
 | |
|   using: "composite"
 | |
|   steps: 
 | |
|     - name: Build distribution
 | |
|       shell: bash
 | |
|       run: |
 | |
|         npm install
 | |
|         npm run all
 | |
|     - name: Upload distribution
 | |
|       uses: actions/upload-artifact@v3
 | |
|       with:
 | |
|         name: dist
 | |
|         path: dist/
 | |
| 
 | 
