-
Notifications
You must be signed in to change notification settings - Fork 0
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
3 changed files
with
74 additions
and
16 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 |
---|---|---|
|
@@ -20,6 +20,12 @@ builds: | |
ldflags: | ||
- -s -w -X cmd.version={{.Version}} -X cmd.commit={{.Commit}} -X cmd.date={{.Date}} -X cmd.builtBy=goreleaser | ||
|
||
# binary_signs: | ||
# - {} | ||
|
||
# signs: | ||
# - artifacts: checksum | ||
|
||
universal_binaries: | ||
- replace: true | ||
|
||
|
@@ -68,7 +74,7 @@ brews: | |
chocolateys: | ||
- title: prattl | ||
authors: Ben Marshall, Ezra Klitsie | ||
project_url: https://github.com/prattlOrg/prattl | ||
project_url: https://prattl.co/ | ||
url_template: "https://github.com/prattlOrg/prattl/releases/download/{{ .Tag }}/{{ .ArtifactName }}" | ||
copyright: 2024 Prattl Org | ||
package_source_url: https://github.com/prattlOrg/prattl | ||
|
@@ -90,8 +96,42 @@ chocolateys: | |
source_repo: "https://push.chocolatey.org/" | ||
skip_publish: false | ||
|
||
nfpms: | ||
- package_name: prattl | ||
file_name_template: >- | ||
{{ .ProjectName }}_{{ .Os }}_ | ||
{{- if eq .Arch "amd64" }}x86_64 | ||
{{- else if eq .Arch "386" }}i386 | ||
{{- else }}{{ .Arch }}{{ end }} | ||
{{- if .Arm }}{{ .Arm }}{{ end }} | ||
vendor: Prattl Org. | ||
homepage: https://prattl.co/ | ||
maintainer: Benjamin Marshall <[email protected]> | ||
description: |- | ||
Prattl installer package. | ||
CLI tool for transcribing audio to text. | ||
license: MIT | ||
formats: | ||
- apk | ||
- deb | ||
- rpm | ||
- termux.deb | ||
- archlinux | ||
dependencies: | ||
- ffmpeg | ||
# Changelog YAML file, see: https://github.com/goreleaser/chglog | ||
# | ||
# You can use goreleaser/chglog to create the changelog for your project, | ||
# pass that changelog yaml file to GoReleaser, | ||
# and it should in turn setup it accordingly for the given available | ||
# formats (deb and rpm at the moment). | ||
# | ||
# Experimental. | ||
# changelog: changelog.yaml | ||
|
||
changelog: | ||
sort: asc | ||
use: github | ||
filters: | ||
exclude: | ||
- "^docs:" | ||
|
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
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