Skip to content

Commit

Permalink
Adding goreleaser integration
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Apr 24, 2020
1 parent 5a9d119 commit 2e32150
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@

# Notes
todo.md

# Distribution
dist
28 changes: 28 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Make sure to check the documentation at http://goreleaser.com
# ---------------------------
# GENERAL
# ---------------------------
before:
hooks:
# run make all
- make all
snapshot:
name_template: "{{ .Tag }}"
changelog:
sort: asc
filters:
exclude:
- '^.github:'
- '^test:'

# ---------------------------
# BUILDER
# ---------------------------
build:
skip: true
# ---------------------------
# Github Release
# ---------------------------
release:
prerelease: true
name_template: "Release v{{.Version}}"

0 comments on commit 2e32150

Please sign in to comment.