From 788dfc5a09ab89a9862bc6abb095746e7413c221 Mon Sep 17 00:00:00 2001 From: Zak Timson Date: Tue, 17 Jul 2018 22:22:36 -0400 Subject: [PATCH] Fixed deploy step --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 456679c..f99a142 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,6 +40,8 @@ jobs: - store_artifacts: path: public + - run: pwd + deploy: docker: - image: circleci/node:10.4-browsers @@ -47,11 +49,15 @@ jobs: working_directory: ~/repo steps: + - checkout + - attach_workspace: at: ./ - run: ls + - run: pwd + - run: name: Deploy command: yarn firebase deploy --token "${FIREBASE_TOKEN}"