Attempt to implement deploys

This commit is contained in:
Zach Latta 2018-02-26 14:17:04 -08:00
parent 0946a13932
commit 816a3668c4

View file

@ -11,3 +11,21 @@ jobs:
- run:
name: Do a dry run
command: ./bin/dry-run
deploy:
steps:
- checkout
- run:
name: Sync w/ production DNS providers
command: ./bin/sync
workflows:
version: 2
build-and-deploy:
jobs:
- build
- deploy:
requires:
- build
filters:
branches:
only: master