Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
  • Loading branch information
zhuwenxing committed Apr 25, 2023
1 parent 3cfa0bf commit 8a9d8b9
Showing 1 changed file with 15 additions and 43 deletions.
58 changes: 15 additions & 43 deletions server/.goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,48 +1,20 @@
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
# - go generate ./...
builds:
- env:
- CGO_ENABLED=1
main: ./main
goos:
# - linux
# - windows
- darwin
# goarch:
# - amd64
# - arm64
archives:
- format: tar.gz
# this name template makes the OS and Arch compatible with the results of uname.
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
# use zip for windows archives
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
- skip: true
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'

# The lines beneath this are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
- "^docs:"
- "^test:"
release:
draft: true
mode: append
extra_files:
- glob: ./milvus-cdc-build/**/*.tar.gz
- glob: ./milvus-cdc-build/checksums.txt
name_template: "Release {{.Tag}}"
header: |
# What's Changed
## 🚀 Features
## 🎄 Enhancements
## 🐛 Bug Fixes

0 comments on commit 8a9d8b9

Please sign in to comment.