forked from altdesktop/playerctl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
73 lines (65 loc) 路 1.41 KB
/
Copy path.goreleaser.yml
File metadata and controls
73 lines (65 loc) 路 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
version: 2
project_name: go-playerctl
before:
hooks:
- go mod tidy
- go test ./...
builds:
- id: goplayerctl
main: ./cmd/goplayerctl
binary: goplayerctl
env:
- CGO_ENABLED=0
goos: [linux, darwin, windows]
goarch: [amd64, arm64]
archives:
- id: default
format: tar.gz
name_template: >-
{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}
files:
- README.md
- COPYING
- doc/playerctl-go.1.md
- data/goplayerctl.bash
- data/goplayerctl.zsh
snapcrafts:
- name: goplayerctl
summary: Media player command-line controller (Go port)
description: |
Go port of Playerctl for controlling media players that implement
the MPRIS D-Bus Interface Specification.
grade: devel
confinement: strict
base: core22
builds:
- goplayerctl
apps:
goplayerctl:
command: goplayerctl
plugs:
- network
- desktop
- desktop-legacy
homebrew_casks:
-
repository:
owner: arran4
name: homebrew-tap
branch: "{{.ProjectName}}-{{.Version}}"
token: "{{ .Env.TAP_GITHUB_TOKEN }}"
pull_request:
enabled: true
draft: false
commit_author:
name: goreleaserbot
email: bot@goreleaser.com
checksum:
name_template: checksums.txt
changelog:
use: git
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'