Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: release metadata #882

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 14 additions & 23 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ before:
- ./scripts/completions.sh
- ./scripts/manpages.sh

metadata:
mod_timestamp: "{{ .CommitTimestamp }}"
description: nFPM is a simple, 0-dependencies, deb, rpm, and apk packager.
full_description: |-
Simple, 0-dependencies, deb, rpm, and apk packager.
nFPM (not FPM) is configurable via YAML and does not need any
packaging software installed.
homepage: https://nfpm.goreleaser.com
license: MIT
maintainers:
- Carlos Alexandro Becker <[email protected]>

gomod:
proxy: true

Expand Down Expand Up @@ -100,9 +112,6 @@ brews:
owner: goreleaser
name: homebrew-tap
directory: Formula
homepage: https://nfpm.goreleaser.com
description: nFPM is a simple, 0-dependencies, deb, rpm and apk packager.
license: MIT
test: |
system "#{bin}/nfpm -v"
install: |-
Expand All @@ -116,31 +125,23 @@ scoops:
- repository:
owner: goreleaser
name: scoop-bucket
homepage: https://nfpm.goreleaser.com
directory: bucket
description: nFPM is a simple, 0-dependencies, deb, rpm and apk packager.
license: MIT

nix:
- name: nfpm
repository:
owner: goreleaser
name: nur
homepage: https://nfpm.goreleaser.com
description: nFPM is a simple, 0-dependencies, deb, rpm and apk packager.
path: pkgs/nfpm/default.nix
license: mit
extra_install: |-
installManPage ./manpages/nfpm.1.gz
installShellCompletion ./completions/*

winget:
- name: nfpm
license_url: https://github.com/goreleaser/nfpm/blob/main/LICENSE.md
publisher: goreleaser
license: Copyright Becker Software LTDA
copyright: Becker Software LTDA
homepage: https://nfpm.goreleaser.com
short_description: nFPM is a simple, 0-dependencies, deb, rpm and apk packager.
repository:
owner: goreleaser
name: winget-pkgs
Expand All @@ -156,13 +157,6 @@ winget:

nfpms:
- file_name_template: "{{ .ConventionalFileName }}"
homepage: https://nfpm.goreleaser.com
description: |-
Simple, 0-dependencies, deb, rpm and apk packager.
nFPM (not FPM) is configurable via YAML and does not need any
packaging software installed.
maintainer: Carlos Alexandro Becker <[email protected]>
license: MIT
vendor: GoReleaser
formats:
- apk
Expand Down Expand Up @@ -198,12 +192,9 @@ nfpms:
mode: 0644

aurs:
- homepage: https://nfpm.goreleaser.com
description: nFPM is a simple, 0-dependencies, deb, rpm and apk packager.
maintainers:
- maintainers:
- "Fernandez Ludovic <lfernandez dot dev at gmail dot com>"
- "Carlos Alexandro Becker <carlos at becker dot software>"
license: MIT
private_key: "{{ .Env.AUR_KEY }}"
git_url: "ssh://[email protected]/nfpm-bin.git"
package: |-
Expand Down
Loading