Go自动打包

安装和使用

go install github.com/goreleaser/goreleaser@latest
goreleaser init

定制话配置文件

.goreleaser.yaml

before:
  hooks:
    # You may remove this if you don't use go modules.
    - go mod tidy
builds:
  - main: ./hrp/cmd/cli/main.go
    env:
      - CGO_ENABLED=0
    goos:
      - linux
      - windows
    goarch:
      - amd64
    flags: -trimpath
archives:
  - format: binary

构建

goreleaser release --snapshot --rm-dist