update .gitignore to include dist/ and modify GoReleaser configuration for archive formats
This commit is contained in:
parent
828d57af90
commit
dca6636455
2 changed files with 4 additions and 14 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -72,3 +72,4 @@ bin/
|
|||
.cursor/
|
||||
log.txt
|
||||
mcp.log
|
||||
dist/
|
||||
|
|
|
|||
|
|
@ -16,24 +16,13 @@ builds:
|
|||
- -s -w
|
||||
|
||||
archives:
|
||||
- name_template: >-
|
||||
{{ .ProjectName }}_{{ .Version }}_
|
||||
{{- title .Os }}_
|
||||
{{- if eq .Arch "amd64" }}x86_64
|
||||
{{- else }}{{ .Arch }}{{ end }}
|
||||
wrap_in_directory: false
|
||||
files:
|
||||
- none*
|
||||
- format_overrides:
|
||||
- formats: 'zip'
|
||||
goos: windows
|
||||
|
||||
changelog:
|
||||
use: github
|
||||
sort: asc
|
||||
groups:
|
||||
- title: Release Notes
|
||||
regexp: ".*"
|
||||
filters:
|
||||
exclude:
|
||||
- ".*"
|
||||
|
||||
checksum:
|
||||
name_template: '{{ .ProjectName }}_{{ .Version }}_checksums.txt'
|
||||
|
|
|
|||
Loading…
Reference in a new issue