You've already forked goreleaser
							
							
				mirror of
				https://github.com/goreleaser/goreleaser.git
				synced 2025-10-30 23:58:09 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			203 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			203 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package pipeline
 | |
| 
 | |
| import "github.com/goreleaser/releaser/context"
 | |
| 
 | |
| // Pipe interface
 | |
| type Pipe interface {
 | |
| 	// Name of the pipe
 | |
| 	Description() string
 | |
| 
 | |
| 	// Run the pipe
 | |
| 	Run(ctx *context.Context) error
 | |
| }
 |