exportarr/.goreleaser.yml
2025-04-21 16:53:36 -04:00

42 lines
846 B
YAML

# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
version: 2
project_name: "exportarr"
archives:
- id: main
wrap_in_directory: true
files:
- "README.md"
builds:
- main: "./cmd/exportarr"
binary: "exportarr"
ldflags:
- -s -w -X main.version={{.Version}} -X main.revision={{.Commit}} -X main.buildTime={{.CommitTimestamp}}
goarch:
- "386"
- "amd64"
- "arm"
- "arm64"
goos:
- "darwin"
- "linux"
- "freebsd"
- "openbsd"
- "windows"
ignore:
- goos: darwin
goarch: arm
- goos: freebsd
goarch: arm
- goos: openbsd
goarch: arm
- goos: freebsd
goarch: arm64
- goos: openbsd
goarch: arm64
- goos: windows
goarch: arm
env:
- CGO_ENABLED=0