croc/.goreleaser.yml

100 lines
2.1 KiB
YAML
Raw Normal View History

2018-10-13 18:19:43 +02:00
project_name: croc
build:
main: main.go
binary: croc
2018-10-18 15:54:25 +02:00
ldflags: -s -w -X main.Version="v{{.Version}}-{{.Date}}"
2018-10-13 18:19:43 +02:00
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
2018-10-18 15:54:25 +02:00
- freebsd
- netbsd
2018-10-13 18:19:43 +02:00
- openbsd
2018-10-18 15:54:25 +02:00
- dragonfly
2018-10-13 18:19:43 +02:00
goarch:
- amd64
- 386
- arm
- arm64
2020-08-12 18:57:06 +02:00
ignore:
2020-08-12 18:58:11 +02:00
- goos: darwin
2020-08-12 18:57:06 +02:00
goarch: 386
- goos: freebsd
goarch: arm
2018-10-13 18:19:43 +02:00
goarm:
- 7
2019-11-18 16:29:11 +01:00
nfpms:
-
formats:
- deb
vendor: "schollz.com"
homepage: "https://schollz.com/software/croc/"
maintainer: "Zack Scholl <zack.scholl@gmail.com>"
description: "A simple, secure, and fast way to transfer data."
license: "MIT"
file_name_template: "{{.ProjectName}}_{{.Version}}_{{.Os}}-{{.Arch}}"
replacements:
amd64: 64bit
386: 32bit
arm: ARM
arm64: ARM64
darwin: macOS
linux: Linux
windows: Windows
openbsd: OpenBSD
netbsd: NetBSD
freebsd: FreeBSD
dragonfly: DragonFlyBSD
archives:
-
format: tar.gz
format_overrides:
- goos: windows
format: zip
name_template: "{{.ProjectName}}_{{.Version}}_{{.Os}}-{{.Arch}}"
replacements:
amd64: 64bit
386: 32bit
arm: ARM
arm64: ARM64
darwin: macOS
linux: Linux
windows: Windows
openbsd: OpenBSD
netbsd: NetBSD
freebsd: FreeBSD
dragonfly: DragonFlyBSD
files:
- README.md
- LICENSE
2020-09-15 21:46:42 +02:00
- zsh_autocomplete
- bash_autocomplete
2019-11-18 16:29:11 +01:00
brews:
-
2021-02-23 21:09:42 +01:00
tap:
2019-11-18 16:29:11 +01:00
owner: schollz
name: homebrew-tap
folder: Formula
description: "croc is a tool that allows any two computers to simply and securely transfer files and folders."
homepage: "https://schollz.com/software/croc/"
install: |
bin.install "croc"
2019-11-18 16:29:11 +01:00
test: |
system "#{bin}/croc --version"
2019-05-12 16:54:03 +02:00
scoop:
bucket:
owner: schollz
name: scoop-bucket
homepage: "https://schollz.com/software/croc/"
description: "croc is a tool that allows any two computers to simply and securely transfer files and folders."
2019-11-18 16:29:11 +01:00
license: MIT
2021-08-06 23:35:53 +02:00
announce:
twitter:
# Wether its enabled or not.
# Defaults to false.
2023-03-14 12:51:47 +01:00
enabled: false