diff options
author | Harvey Tindall <hrfee@protonmail.ch> | 2021-01-16 17:03:48 +0000 |
---|---|---|
committer | Harvey Tindall <hrfee@protonmail.ch> | 2021-01-16 17:03:48 +0000 |
commit | 7a3b3d52163e205972fcf197b8ae9c57bd2d0753 (patch) | |
tree | 5b50603857588871a5bd79503e5cb85ec71f5505 /dist/config.yaml | |
parent | 750317a0d71de8c47233c019a7c07353d3103d5d (diff) | |
download | waybar-mpris-7a3b3d52163e205972fcf197b8ae9c57bd2d0753.tar.gz waybar-mpris-7a3b3d52163e205972fcf197b8ae9c57bd2d0753.zip |
update readme, mention AUR package
Diffstat (limited to 'dist/config.yaml')
-rw-r--r-- | dist/config.yaml | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/dist/config.yaml b/dist/config.yaml new file mode 100644 index 0000000..9e90b5b --- /dev/null +++ b/dist/config.yaml @@ -0,0 +1,88 @@ +project_name: waybar-mpris +release: + github: + owner: hrfee + name: waybar-mpris + gitea: + owner: hrfee + name: waybar-mpris + name_template: v{{.Version}} +milestones: +- repo: + owner: hrfee + name: waybar-mpris + name_template: '{{ .Tag }}' +scoop: + name: waybar-mpris + commit_author: + name: goreleaserbot + email: goreleaser@carlosbecker.com + commit_msg_template: Scoop update for {{ .ProjectName }} version {{ .Tag }} +builds: +- id: waybar-mpris + goos: + - linux + goarch: + - amd64 + - arm + - arm64 + goarm: + - "6" + targets: + - linux_amd64 + - linux_arm_6 + - linux_arm64 + dir: ./ + main: . + ldflags: + - -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.builtBy=goreleaser + binary: waybar-mpris + env: + - CGO_ENABLED=0 + lang: go + gobinary: go +archives: +- id: default + builds: + - waybar-mpris + name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}' + replacements: + amd64: x86_64 + linux: Linux + format: tar.gz + files: + - licence* + - LICENCE* + - license* + - LICENSE* + - readme* + - README* + - changelog* + - CHANGELOG* + allow_different_binary_count: false +snapshot: + name_template: git-{{.ShortCommit}} +checksum: + name_template: checksums.txt + algorithm: sha256 +changelog: + filters: + exclude: + - '^docs:' + - '^test:' + sort: asc +dist: dist +env_files: + github_token: ~/.config/goreleaser/github_token + gitlab_token: ~/.config/goreleaser/gitlab_token + gitea_token: ~/.config/goreleaser/gitea_token +before: + hooks: + - go mod download +source: + name_template: '{{ .ProjectName }}-{{ .Version }}' + format: tar.gz +github_urls: + download: https://github.com +gitlab_urls: + download: https://gitlab.com |