mirror of
https://github.com/onedr0p/exportarr.git
synced 2026-02-06 10:57:32 +00:00
42 lines
846 B
YAML
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
|