goveal/.circleci/config.yml
2020-12-02 13:42:12 +01:00

34 lines
814 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/golang:1.15
steps:
- checkout
- run: sh -c "$(curl -ssL https://taskfile.dev/install.sh)" -- -d
- run: ./bin/task cli-cover-report
release:
docker:
- image: circleci/golang:1.15
steps:
- checkout
- run: sh -c "$(curl -ssL https://taskfile.dev/install.sh)" -- -d
- run: ./bin/task tools download-reveal
- run: curl -sL https://git.io/goreleaser | bash
- run: goreleaser release
workflows:
version: 2
build_and_release:
jobs:
- build:
filters:
tags:
only: /.*/
- release:
requires:
- build
filters:
branches:
ignore: /.*/
tags:
only: /^v.*$/