Ability to build release zips in CI

This commit is contained in:
Josh Klar
2019-07-20 16:14:58 -07:00
parent 8f5511327e
commit cd7d8a2e4c
4 changed files with 47 additions and 4 deletions

View File

@@ -1,6 +1,22 @@
---
version: 2
jobs:
build:
docker:
- image: 'kmkfw/base'
environment:
KMK_TEST: 1
PIPENV_VENV_IN_PROJECT: 1
steps:
- checkout
- restore_cache:
keys:
- v2-kmk-venv-{{ checksum "Pipfile.lock" }}
- run: make dist
test:
docker:
- image: 'kmkfw/base'
@@ -21,6 +37,13 @@ workflows:
version: 2
build-deploy:
jobs:
- build:
filters:
branches:
# only: /master/
only: /.*/
tags:
only: /.*/
- test:
filters:
branches: