mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-08 03:31:59 +02:00
e54656438b
The replacements thing was always a bit weird, especially on archives. We can solve that with templates, so, removing I'm deprecating it. Also did the same on other places that had it the same feature. Closes #3588 Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
10 lines
193 B
Go
10 lines
193 B
Go
// Package static contains static "text" files.
|
|
package static
|
|
|
|
import _ "embed"
|
|
|
|
// ExampleConfig is the config used within goreleaser init.
|
|
//
|
|
//go:embed config.yaml
|
|
var ExampleConfig []byte
|