configure goreleaser
This commit is contained in:
parent
4fac52c8e4
commit
f8f635a8ac
3 changed files with 28 additions and 2 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/dist/
|
27
.goreleaser.yml
Normal file
27
.goreleaser.yml
Normal file
|
@ -0,0 +1,27 @@
|
|||
# Build customization
|
||||
builds:
|
||||
-
|
||||
binary: validtoml
|
||||
goos:
|
||||
- windows
|
||||
- darwin
|
||||
goarch:
|
||||
- 386
|
||||
- amd64
|
||||
ignore:
|
||||
- goos: darwin
|
||||
goarch: 386
|
||||
|
||||
# Archive customization
|
||||
archive:
|
||||
format: tar.gz
|
||||
format_overrides:
|
||||
- goos: windows
|
||||
format: zip
|
||||
replacements:
|
||||
amd64: 64-bit
|
||||
386: 32-bit
|
||||
darwin: macOS
|
||||
files:
|
||||
- README.md
|
||||
- LICENSE
|
|
@ -1,7 +1,5 @@
|
|||
# About
|
||||
|
||||
[![gorelease](https://dn-gorelease.qbox.me/gorelease-download-blue.svg)](https://gobuild.io/martinlindhe/validtoml/master)
|
||||
|
||||
Command line tool to validate TOML syntax of input file.
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue