1
0
mirror of https://github.com/schollz/croc synced 2024-07-08 11:55:46 +00:00
croc/.goreleaser.yml

100 lines
2.1 KiB
YAML
Raw Normal View History

2018-10-13 16:19:43 +00:00
project_name: croc
build:
main: main.go
binary: croc
2018-10-18 13:54:25 +00:00
ldflags: -s -w -X main.Version="v{{.Version}}-{{.Date}}"
2018-10-13 16:19:43 +00:00
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
2018-10-18 13:54:25 +00:00
- freebsd
- netbsd
2018-10-13 16:19:43 +00:00
- openbsd
2018-10-18 13:54:25 +00:00
- dragonfly
2018-10-13 16:19:43 +00:00
goarch:
- amd64
- 386
- arm
- arm64
2020-08-12 16:57:06 +00:00
ignore:
2020-08-12 16:58:11 +00:00
- goos: darwin
2020-08-12 16:57:06 +00:00
goarch: 386
- goos: freebsd
goarch: arm
2018-10-13 16:19:43 +00:00
goarm:
- 7
2019-11-18 15:29:11 +00: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 19:46:42 +00:00
- zsh_autocomplete
- bash_autocomplete
2019-11-18 15:29:11 +00:00
brews:
-
2021-02-23 20:09:42 +00:00
tap:
2019-11-18 15:29:11 +00: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 15:29:11 +00:00
test: |
system "#{bin}/croc --version"
2019-05-12 14:54:03 +00: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 15:29:11 +00:00
license: MIT
2021-08-06 21:35:53 +00:00
announce:
twitter:
# Wether its enabled or not.
# Defaults to false.
2023-03-14 11:51:47 +00:00
enabled: false