Ocelot/.circleci/config.yml
2020-01-14 09:50:10 +00:00

29 lines
481 B
YAML

version: 2
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:
- build:
filters:
branches:
only: master
pr:
jobs:
- build:
filters:
branches:
ignore: master