Added CircleCI config file

This commit is contained in:
Peter 2019-04-20 00:31:39 +02:00
parent a4c0016baa
commit f2c0c0e200
Signed by: prskr
GPG key ID: C1DB5D2E8DB512F9

30
.circleci/config.yml Normal file
View file

@ -0,0 +1,30 @@
version: 2
jobs:
build:
docker:
- image: golang:1.12-alpine
steps:
- checkout
- name: Make compile
command: make compile
release:
docker:
- image: circleci/golang:1.12
steps:
- checkout
- run:
name: goreleaser
command: curl -sL https://git.io/goreleaser | bash
workflows:
version: 2
build_and_release:
jobs:
- build
- release:
requires:
- build
filters:
branches:
ignore: /.*/
tags:
only: /^v.*$/