-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
89 lines (81 loc) · 2.11 KB
/
.goreleaser.yaml
File metadata and controls
89 lines (81 loc) · 2.11 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
version: 2
project_name: pace
builds:
- main: ./cmd/pace
binary: pace
ldflags:
- -s -w
- -X github.com/azuyamat/pace/internal/version.Version={{.Version}}
- -X github.com/azuyamat/pace/internal/version.Commit={{.Commit}}
- -X github.com/azuyamat/pace/internal/version.Date={{.Date}}
flags:
- -trimpath
env:
- CGO_ENABLED=0
goos:
- windows
- linux
- darwin
goarch:
- amd64
- arm64
archives:
- formats: ['tar.gz', 'zip']
format_overrides:
- goos: windows
formats: ['zip']
name_template: "{{ .ProjectName }}-{{ .Os }}-{{ .Arch }}"
checksum:
name_template: "checksums.txt"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
release:
github:
owner: azuyamat
name: pace
draft: false
prerelease: auto
nfpms:
- package_name: pace
homepage: https://github.com/azuyamat/pace
description: Task runner and build orchestration tool
maintainer: Azuyamat <blaneyderek@gmail.com>
license: MIT
formats:
- deb
winget:
- name: pace
publisher: Azuyamat
short_description: Task runner and build orchestration tool
license: MIT
publisher_url: https://github.com/azuyamat
publisher_support_url: https://github.com/azuyamat/pace/issues
package_identifier: Azuyamat.Pace
path: manifests/a/Azuyamat/Pace/{{.Version}}
commit_msg_template: "New version: Azuyamat.Pace version {{.Version}}"
homepage: https://github.com/azuyamat/pace
description: |
Pace is a task runner that allows you to define, manage, and execute
tasks with dependencies, hooks, caching, and file watching.
license_url: https://github.com/azuyamat/pace/blob/master/LICENSE
copyright: Azuyamat
tags:
- task-runner
- build-tool
- cli
- golang
repository:
owner: azuyamat
name: winget-pkgs
branch: "azuyamat-pace-{{.Version}}"
token: "{{ .Env.WINGET_GITHUB_TOKEN }}"
pull_request:
enabled: true
base:
owner: microsoft
name: winget-pkgs
branch: master