goveal/.circleci/config.yml

31 lines
516 B
YAML
Raw Normal View History

2019-04-19 22:31:39 +00:00
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.*$/