hetty/.goreleaser.yml

108 lines
2.5 KiB
YAML
Raw Normal View History

2022-01-25 12:20:16 +00:00
before:
hooks:
- make clean
2022-01-28 19:20:15 +00:00
- sh -c "NEXT_PUBLIC_VERSION={{ .Version}} make build-admin"
2022-01-25 12:20:16 +00:00
- go mod tidy
builds:
2022-01-25 12:20:16 +00:00
- env:
- CGO_ENABLED=0
2020-10-04 09:50:03 +00:00
main: ./cmd/hetty
2022-01-25 12:20:16 +00:00
ldflags:
2022-01-26 10:35:47 +00:00
- -s -w -X main.version={{.Version}}
goos:
- linux
2022-01-25 12:20:16 +00:00
- windows
- darwin
goarch:
- amd64
2022-01-25 12:20:16 +00:00
- arm64
archives:
2022-01-25 12:20:16 +00:00
- replacements:
darwin: macOS
linux: Linux
windows: Windows
amd64: x86_64
format_overrides:
2022-01-25 12:20:16 +00:00
- goos: windows
format: zip
2022-03-02 13:49:24 +00:00
brews:
- tap:
owner: hettysoft
name: homebrew-tap
folder: Formula
homepage: https://hetty.xyz
description: An HTTP toolkit for security research.
license: MIT
commit_author:
name: David Stotijn
email: dstotijn@gmail.com
test: |
system "#{bin}/hetty -v"
2022-03-03 09:35:25 +00:00
snapcrafts:
- publish: true
summary: An HTTP toolkit for security research.
description: |
Hetty is an HTTP toolkit for security research. It aims to become an open
source alternative to commercial software like Burp Suite Pro, with
powerful features tailored to the needs of the infosec and bug bounty
community.
grade: stable
confinement: strict
license: MIT
apps:
hetty:
command: hetty
plugs: ["network", "network-bind"]
2022-03-03 09:35:25 +00:00
scoop:
bucket:
owner: hettysoft
name: scoop-bucket
commit_author:
name: David Stotijn
email: dstotijn@gmail.com
homepage: https://hetty.xyz
description: An HTTP toolkit for security research.
license: MIT
dockers:
- extra_files:
- go.mod
- go.sum
- pkg
- cmd
- admin
image_templates:
- "ghcr.io/dstotijn/hetty:{{ .Version }}"
- "ghcr.io/dstotijn/hetty:{{ .Major }}"
- "ghcr.io/dstotijn/hetty:{{ .Major }}.{{ .Minor }}"
- "ghcr.io/dstotijn/hetty:latest"
- "dstotijn/hetty:{{ .Version }}"
- "dstotijn/hetty:{{ .Major }}"
- "dstotijn/hetty:{{ .Major }}.{{ .Minor }}"
- "dstotijn/hetty:latest"
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.title={{.ProjectName}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--label=org.opencontainers.image.source=https://github.com/dstotijn/hetty"
- "--build-arg=HETTY_VERSION={{.Version}}"
checksum:
name_template: "checksums.txt"
snapshot:
2022-01-25 12:20:16 +00:00
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
2022-03-03 09:35:25 +00:00
- "^test:"