From 4c2006f8381ba7e6437f51a87874070315e9e4f5 Mon Sep 17 00:00:00 2001 From: Zach Latta Date: Mon, 26 Feb 2018 14:21:28 -0800 Subject: [PATCH] Fix YAML --- .circleci/config.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 80aaf8c..2b38836 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,11 +12,16 @@ jobs: name: Do a dry run command: ./bin/dry-run deploy: + docker: + - image: python:2.7 steps: + - run: + name: Install OctoDNS + command: pip install octodns - checkout - run: - name: Sync w/ production DNS providers - command: ./bin/sync + name: Sync w/ production DNS providers + command: ./bin/sync workflows: version: 2 @@ -24,8 +29,8 @@ workflows: jobs: - build - deploy: - requires: - - build - filters: - branches: - only: master + requires: + - build + filters: + branches: + only: master