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
|
2020-10-31 14:19:17 +00:00
|
|
|
|
2020-09-25 00:53:41 +00:00
|
|
|
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}}
|
2020-09-25 00:53:41 +00:00
|
|
|
goos:
|
|
|
|
- linux
|
2022-01-25 12:20:16 +00:00
|
|
|
- windows
|
|
|
|
- darwin
|
2020-10-31 14:19:17 +00:00
|
|
|
goarch:
|
|
|
|
- amd64
|
2022-01-25 12:20:16 +00:00
|
|
|
- arm64
|
2020-10-31 14:19:17 +00:00
|
|
|
|
2020-09-25 00:53:41 +00:00
|
|
|
archives:
|
2022-01-25 12:20:16 +00:00
|
|
|
- replacements:
|
|
|
|
darwin: macOS
|
|
|
|
linux: Linux
|
|
|
|
windows: Windows
|
|
|
|
amd64: x86_64
|
2020-10-31 14:19:17 +00:00
|
|
|
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:
|
2022-03-15 09:11:53 +00:00
|
|
|
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
|
|
|
|
|
2022-03-30 09:50:16 +00:00
|
|
|
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}}"
|
|
|
|
|
2020-09-25 00:53:41 +00:00
|
|
|
checksum:
|
|
|
|
name_template: "checksums.txt"
|
2020-10-31 14:19:17 +00:00
|
|
|
|
2020-09-25 00:53:41 +00:00
|
|
|
snapshot:
|
2022-01-25 12:20:16 +00:00
|
|
|
name_template: "{{ incpatch .Version }}-next"
|
2020-10-31 14:19:17 +00:00
|
|
|
|
2020-09-25 00:53:41 +00:00
|
|
|
changelog:
|
|
|
|
sort: asc
|
|
|
|
filters:
|
|
|
|
exclude:
|
|
|
|
- "^docs:"
|
2022-03-03 09:35:25 +00:00
|
|
|
- "^test:"
|