-
Notifications
You must be signed in to change notification settings - Fork 2
/
.goreleaser.yaml
83 lines (71 loc) · 2.77 KB
/
.goreleaser.yaml
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
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
# The lines below are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/need to use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
version: 1
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
builds:
- binary: treblle
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
- freebsd
archives:
- format: tar.gz
# use zip for windows archives
format_overrides:
- goos: windows
format: zip
brews:
-
name: treblle
homepage: "https://github.com/Treblle/treblle-cli"
repository:
owner: Treblle
name: homebrew-treblle
commit_author:
name: Steve McDougall
email: [email protected]
chocolateys:
- name: treblle
title: Treblle CLI
authors: Treblle
project_url: https://github.com/treblle/treblle-cli
url_template: "https://github.com/treblle/treblle-cli/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
copyright: 2024 Treblle
license_url: https://github.com/treblle/treblle-cli/blob/main/LICENSE
project_source_url: https://github.com/treblle/treblle-cli
package_source_url: https://github.com/treblle/treblle-cli
icon_url: https://avatars.githubusercontent.com/u/57541673?s=200&v=4
docs_url: https://docs.treblle.com/tools/cli
bug_tracker_url: https://github.com/treblle/treblle-cli/issues
tags: openapi api insights api-insights api-testing api-performance api-security api-quality
summary: API Insights scores your API using over 30 tests taken from standards and industry best practices across three categories; Performance, Quality, & Security
description: |-
API Insights scores your API using over 30 tests taken from standards and industry best practices across three categories:
- **Design**: how well your API is structured. Is it a well-crafted ship, ready to withstand the rough seas of user demands and scalability?
- **Performance**: does your API respond quickly? It's like checking the wind in your sails – are you moving swiftly and smoothly?
- **Security**: how safe and secure is your API? It's akin to having a strong hull to protect against the stormy seas of cyber threats.
release_notes: "https://github.com/treblle/treblle-cli/releases/tag/v{{ .Version }}"
api_key: "{{ .Env.CHOCOLATEY_API_KEY }}"
source_repo: "https://push.chocolatey.org/"
skip_publish: false
checksum:
name_template: 'checksums.txt'
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"