From c14c0debe8e9cb46699f41ef1b26672195950a4a Mon Sep 17 00:00:00 2001 From: Bogdan U Date: Sat, 25 Sep 2021 15:24:06 +0300 Subject: [PATCH] add goreleaser support (#165) * add goreleaser.yml add README.md * update goreleaser --- .goreleaser.yml | 10 ++++++++++ README.md | 1 + 2 files changed, 11 insertions(+) create mode 100644 .goreleaser.yml diff --git a/.goreleaser.yml b/.goreleaser.yml new file mode 100644 index 0000000..3a53886 --- /dev/null +++ b/.goreleaser.yml @@ -0,0 +1,10 @@ +builds: + - skip: true +snapshot: + name_template: "{{ .Tag }}-next" +changelog: + sort: asc + filters: + exclude: + - '^docs:' + - '^test:' diff --git a/README.md b/README.md index 2efc171..76ef573 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ gin middleware to automatically generate RESTFUL API documentation with Swagger [![Codecov branch](https://img.shields.io/codecov/c/github/swaggo/gin-swagger/master.svg)](https://codecov.io/gh/swaggo/gin-swagger) [![Go Report Card](https://goreportcard.com/badge/github.com/swaggo/gin-swagger)](https://goreportcard.com/report/github.com/swaggo/gin-swagger) [![GoDoc](https://godoc.org/github.com/swaggo/gin-swagger?status.svg)](https://godoc.org/github.com/swaggo/gin-swagger) +[![Release](https://img.shields.io/github/release/swaggo/gin-swagger.svg?style=flat-square)](https://github.com/swaggo/gin-swagger/releases) ## Usage