mirror of
				https://github.com/mgechev/revive.git
				synced 2025-10-30 23:37:49 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			515 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			515 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # GoReleaser configuration for revive.
 | |
| # Documentation: https://goreleaser.com/
 | |
| ---
 | |
| version: 2
 | |
| archives:
 | |
|   - id: revive
 | |
|     name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
 | |
| builds:
 | |
|   -
 | |
|     env:
 | |
|       - CGO_ENABLED=0
 | |
|       - BUILDER=GoReleaser
 | |
|     goos:
 | |
|       - linux
 | |
|       - darwin
 | |
|       - windows
 | |
| 
 | |
| changelog:
 | |
|   filters:
 | |
|     exclude:
 | |
|       - "^test:"
 | |
|   sort: asc
 | |
| checksum:
 | |
|   name_template: checksums.txt
 | |
| snapshot:
 | |
|   version_template: "{{ .Tag }}-next"
 | |
| project_name: revive
 |