From fa5bd398eaec820a181e0ccfd7e636f2985f3c81 Mon Sep 17 00:00:00 2001 From: Bogdan Habic Date: Thu, 8 Nov 2018 11:20:30 +0100 Subject: [PATCH] Added circleci. --- .circleci/config.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..4477aea --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,18 @@ +version: 2 +jobs: + release: + docker: + - image: circleci/golang:1.11.2 + 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]+)*(-.*)*/ \ No newline at end of file