goveal/.circleci/config.yml
Peter Kurfer f1118a1ba1
Update and cleanup
- move to Taskfile
- update RevealJS
- remove annoying special paths and build overlay file system
2020-12-02 13:33:47 +01:00

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