github.com/stealthrocket/wzprof@v0.2.1-0.20230830205924-5fa86be5e5b3/.goreleaser.yml (about)

     1  project_name: wzprof
     2  dist: ./goreleaser/dist
     3  
     4  before:
     5    hooks:
     6      - go mod tidy
     7  
     8  builds:
     9    - main: ./cmd/wzprof/main.go
    10      binary: wzprof
    11      mod_timestamp: '{{ .CommitTimestamp }}'
    12      goarch:
    13        - amd64
    14        - arm64
    15      ldflags:
    16        - -X main.version={{.Version}} 
    17  
    18  release:
    19    github:
    20      owner: stealthrocket
    21      name: wzprof
    22    draft: true
    23    prerelease: auto
    24    mode: replace
    25  changelog:
    26    use: github-native