-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
57 lines (46 loc) · 1.6 KB
/
.goreleaser.yml
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
# .goreleaser.yml
release:
# If set to true, will not auto-publish the release.
# Default is false.
draft: true
# If set, will create a release discussion in the category specified.
# Default is empty.
# discussion_category_name: General
# If set to auto, will mark the release as not ready for production
# in case there is an indicator for this in the tag e.g. v1.0.0-rc1
# If set to true, will mark the release as not ready for production.
# Default is false.
prerelease: auto
# You can change the name of the release.
# Default is `{{.Tag}}`
# name_template: "{{.ProjectName}}-v{{.Version}} {{.Env.USER}}"
# You can disable this pipe in order to not upload any artifacts.
# Defaults to false.
disable: false
# You can add extra pre-existing files to the release.
# The filename on the release will be the last part of the path (base). If
# another file with the same name exists, the latest one found will be used.
# Defaults to empty.
#extra_files:
# - glob: ./path/to/file.txt
# - glob: ./glob/**/to/**/file/**/*
# - glob: ./glob/foo/to/bar/file/foobar/override_from_previous
#
brews:
-
name: mktable
tap:
owner: keyneston
name: homebrew-tap
token: "{{ .Env.GH_BREW_TOKEN }}"
# Your app's homepage.
# Default is empty.
homepage: "https://github.com/keyneston/mktable"
# Your app's description.
# Default is empty.
description: "Make markdown tables from the command line"
# SPDX identifier of your app's license.
# Default is empty.
license: "BSD-3-Clause"
test: |
system "#{bin}/mktable --h"