diff --git a/.goreleaser.yml b/.goreleaser.yml index 3c0ef2afca1bf19a52ed496eb400a01dd2d553eb..8ae6dae69e98a179560522a8f78b5f63495c293e 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -105,3 +105,27 @@ brews: # This tells Homebrew to just install the binary. install: | bin.install "email-cli" +nfpms: + - # ID of the nfpm config, must be unique. + id: email-cli-btea + # Name of the package. + package_name: email-cli + # Version of the package. + # Defaults to the project's version. + version: "{{ .Version }}" + # Maintainer of the package. + maintainer: "Drew Smirnoff " + # Description of the package. + description: "A beautiful and functional email client for your terminal." + # Homepage of the package. + homepage: "https://github.com/andrinoff/email-cli" + # License of the package. + license: MIT + # Formats to generate. + formats: + - deb # For apt + - rpm # For yum/dnf + # Files to include in the package. + contents: + - src: ./email-cli + dst: /usr/local/bin/email-cli