mirror of
				https://github.com/mgechev/revive.git
				synced 2025-10-30 23:37:49 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			620 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			620 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # This is an example goreleaser.yaml file with some sane defaults.
 | |
| # Make sure to check the documentation at http://goreleaser.com
 | |
| ---
 | |
| archives:
 | |
|   -
 | |
|     replacements:
 | |
|       386: i386
 | |
|       amd64: x86_64
 | |
|       darwin: Darwin
 | |
|       linux: Linux
 | |
|       windows: Windows
 | |
| before:
 | |
|   hooks:
 | |
|     - "go mod download"
 | |
|     - "go generate ./..."
 | |
| builds:
 | |
|   -
 | |
|     env:
 | |
|       - CGO_ENABLED=0
 | |
|     goos:
 | |
|       - linux
 | |
|       - darwin
 | |
|       - windows
 | |
| 
 | |
| changelog:
 | |
|   filters:
 | |
|     exclude:
 | |
|       - "^docs:"
 | |
|       - "^test:"
 | |
|   sort: asc
 | |
| checksum:
 | |
|   name_template: checksums.txt
 | |
| snapshot:
 | |
|   name_template: "{{ .Tag }}-next"
 | |
| project_name: revive
 |