-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove deprecated fields and add name templates (#256)
[#251] Replace deprecated fields in .goreleaser.yaml as described to the documentation Signed-off-by: Kristiyan Gostev <[email protected]>
- Loading branch information
Showing
1 changed file
with
2 additions
and
4 deletions.
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 |
---|---|---|
|
@@ -434,6 +434,7 @@ builds: | |
mod_timestamp: '{{ .CommitTimestamp }}' | ||
archives: | ||
- id: kanto-archive-all | ||
name_template: '{{ .ProjectName }}_{{ .Version }}_linux_{{ if .Amd64 }}x86_64{{ else if .Arm }}armv7{{ else }}{{ .Runtime.Goarch }}{{ end }}' | ||
builds: | ||
- build-suite-connector | ||
- build-container-management | ||
|
@@ -444,8 +445,6 @@ archives: | |
- build-suite-bootstrapping | ||
- build-file-backup | ||
- build-system-metrics | ||
replacements: | ||
amd64: x86_64 | ||
files: | ||
# common files | ||
- LICENSE | ||
|
@@ -524,8 +523,7 @@ nfpms: | |
- build-file-backup-pkg | ||
- build-system-metrics-pkg | ||
bindir: /usr/bin | ||
replacements: | ||
amd64: x86_64 | ||
file_name_template: '{{ .ProjectName }}_{{ .Version }}_linux_{{ if .Amd64 }}x86_64{{ else if .Arm }}armv7{{ else }}{{ .Runtime.Goarch }}{{ end }}' | ||
maintainer: Contributors to the Eclipse Foundation, Kanto Project <[email protected]> | ||
description: |- | ||
Eclipse Kanto™ is a modular IoT edge software that enables devices for IoT with all essentials | ||
|