Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
maastha committed Feb 21, 2025
1 parent abefff7 commit 8ab7617
Showing 1 changed file with 36 additions and 22 deletions.
58 changes: 36 additions & 22 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,39 +6,53 @@
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj

version: 2

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:
- skip: true

checksum:
name_template: "{{ .ProjectName }}_{{ .Version }}_SHA256SUMS"
algorithm: sha256
changelog:
sort: asc
use: github
filters:
exclude:
- Merge pull request
- Merge remote-tracking branch
- Merge branch
- go mod tidy
groups:
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: "Bug fixes"
regexp: "^.*fix[(\\w)]*:+.*$"
order: 10
- title: Other work
order: 999

# version: 2

# builds:
# - skip: true

# checksum:
# name_template: "{{ .ProjectName }}_{{ .Version }}_SHA256SUMS"
# algorithm: sha256

# signs:
# - artifacts: checksum
# args:
# - "--batch"
# - "--local-user"
# - "{{ .Env.GPG_FINGERPRINT }}" # set this environment variable for your signing key
# - "{{ .Env.GPG_FINGERPRINT }}"
# - "--output"
# - "${signature}"
# - "--detach-sign"
# - "${artifact}"

changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
# changelog:
# sort: asc
# filters:
# exclude:
# - "^docs:"
# - "^test:"

release:
name_template: "v{{.Version}}"
# release:
# name_template: "v{{.Version}}"

0 comments on commit 8ab7617

Please sign in to comment.