-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
builds: | ||
- | ||
id: "opnborg" | ||
binary: opnborg | ||
main: ./cmd/opnborg/main.go | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- linux | ||
- freebsd | ||
- darwin | ||
- windows | ||
goarch: | ||
- amd64 | ||
- arm | ||
- arm64 | ||
goarm: | ||
- 7 | ||
archives: | ||
- | ||
id: opnborg-binaries | ||
name_template: "opnborg-{{ .Os }}_{{ .Arch }}_{{ .Version }}" | ||
files: | ||
- LICENSE.md | ||
- README.md | ||
checksum: | ||
name_template: 'checksums.txt' | ||
snapshot: | ||
name_template: "{{ .Tag }}-next" | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
nfpms: | ||
- | ||
file_name_template: "opnborg_package_{{ .Version }}_{{ .Os }}_{{ .Arch }}" | ||
vendor: Michael Paepcke | ||
homepage: https://paepcke.de/opnborg | ||
maintainer: Michael Paepcke <[email protected]> | ||
description: opnborg | ||
license: BSD 3-Clause | ||
formats: | ||
- deb | ||
- rpm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ import ( | |
) | ||
|
||
// global const | ||
const _version = "v0.1.5" | ||
const _version = "v0.1.6" | ||
|
||
// global var | ||
var ( | ||
|