Ocelot/.circleci/config.yml
2020-01-19 11:15:50 +00:00

30 lines
533 B
YAML

version: 2.1
jobs:
build:
docker:
- image: mijitt0m/ocelot-build:0.0.1
steps:
- checkout
- run: make build
release:
docker:
- image: mijitt0m/ocelot-build:0.0.1
steps:
- checkout
- run: make release
workflows:
version: 2
master:
jobs:
- release:
filters:
branches:
only: master
pr:
jobs:
- build:
filters:
branches:
ignore:
- master