-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
99 lines (90 loc) · 2.37 KB
/
Copy path.goreleaser.yaml
File metadata and controls
99 lines (90 loc) · 2.37 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
90
91
92
93
94
95
96
97
98
99
version: 2
project_name: cell
before:
hooks:
- go run github.com/swaggo/swag/cmd/swag@latest init -g cmd/serve.go -o docs --parseDependency --parseInternal
builds:
- id: cell
main: ./cmd
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarch:
- amd64
- arm64
ldflags:
- -s -w
-X 'github.com/DimmKirr/devcell/internal/version.Version={{.Version}}'
-X 'github.com/DimmKirr/devcell/internal/version.GitCommit={{.Env.SHORT_SHA}}'
archives:
- id: release_archive
name_template: "{{ .ProjectName }}-{{ .Os }}-{{ .Arch }}"
files:
- LICENSE
- README.md
release:
github:
owner: devcell-sh
name: devcell
draft: true
replace_existing_draft: true
make_latest: false
changelog:
sort: asc
use: git
groups:
- title: "Features"
regexp: '^.*?feat(\(.+\))??!?:.+$'
order: 0
- title: "Bug Fixes"
regexp: '^.*?fix(\(.+\))??!?:.+$'
order: 1
- title: "Chores"
regexp: '^.*?chore(\(.+\))??!?:.+$'
order: 2
- title: "Tests"
regexp: '^.*?test(\(.+\))??!?:.+$'
order: 3
- title: "Other"
order: 999
filters:
exclude:
- 'Merge pull request'
- 'Merge branch'
checksum:
name_template: "{{ .ProjectName }}-checksums.txt"
homebrew_casks:
- name: devcell
repository:
owner: devcell-sh
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
directory: Casks
url:
template: "https://github.com/devcell-sh/devcell/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_author:
name: Dmitry Kireev
email: dmitry@atd.sh
homepage: "https://github.com/devcell-sh/devcell"
description: "Run AI coding agents in a consistent Docker dev environment"
conflicts:
- cask: devcell-dev
binaries: ["cell"]
- name: "devcell@{{ .Version }}"
repository:
owner: devcell-sh
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
directory: Casks
url:
template: "https://github.com/devcell-sh/devcell/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_author:
name: Dmitry Kireev
email: dmitry@atd.sh
homepage: "https://github.com/devcell-sh/devcell"
description: "Run AI coding agents in a consistent Docker dev environment"
conflicts:
- cask: devcell-dev
binaries: ["cell"]