mirror of
https://github.com/foomo/contentfulproxy.git
synced 2025-10-16 12:25:37 +00:00
32 lines
680 B
YAML
32 lines
680 B
YAML
# .goreleaser.yml
|
|
# Build customization
|
|
builds:
|
|
- binary: contentfulproxy
|
|
main: ./cmd/contentfulproxy/main.go
|
|
env:
|
|
- CGO_ENABLED=0
|
|
ldflags:
|
|
- -s -w
|
|
goos:
|
|
- windows
|
|
- darwin
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
|
|
# .goreleaser.yml
|
|
archives:
|
|
- format: tar.gz
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
|
|
brews:
|
|
# Reporitory to push the tap to.
|
|
- tap:
|
|
owner: foomo
|
|
name: homebrew-contentfulproxy
|
|
caveats: "contentfulproxy -webserver-address=:80"
|
|
homepage: "https://github.com/foomo/contentfulproxy"
|
|
description: "An experimental proxy for read access to contentful to save your API quota"
|