Skip to content

Commit c812ec8

Browse files
committed
add goreleaser definition
Fixes #19
1 parent 7e8fd5d commit c812ec8

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.goreleaser.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# .goreleaser.yml
2+
release:
3+
# Repo in which the release will be created.
4+
# Default is extracted from the origin remote URL.
5+
# Note: it can only be one: either github or gitlab or gitea
6+
github:
7+
owner: kui-shell
8+
name: kask
9+
10+
# IDs of the archives to use.
11+
# Defaults to all.
12+
#ids:
13+
# - foo
14+
# - bar
15+
16+
# If set to true, will not auto-publish the release.
17+
# Default is false.
18+
#draft: true
19+
20+
# If set to auto, will mark the release as not ready for production
21+
# in case there is an indicator for this in the tag e.g. v1.0.0-rc1
22+
# If set to true, will mark the release as not ready for production.
23+
# Default is false.
24+
prerelease: auto
25+
26+
# You can change the name of the GitHub release.
27+
# Default is `{{.Tag}}`
28+
name_template: "{{.ProjectName}}-v{{.Version}} {{.Env.USER}}"
29+
30+
# You can disable this pipe in order to not upload any artifacts to
31+
# GitHub.
32+
# Defaults to false.
33+
#disable: true

0 commit comments

Comments
 (0)