diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..2aa6c0a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,18 @@ +version: 2 +jobs: + release: + docker: + - image: circleci/golang:1.12 + steps: + - checkout + - run: curl -sL https://git.io/goreleaser | bash +workflows: + version: 2 + release: + jobs: + - release: + filters: + branches: + ignore: /.*/ + tags: + only: /v[0-9]+(\.[0-9]+)*(-.*)*/