From 94b3971c96020b6c9aaea1d117f259c1af4b8a27 Mon Sep 17 00:00:00 2001 From: Francois Lannoy Date: Tue, 1 Dec 2020 15:20:57 +0100 Subject: [PATCH] heroku install ? --- .circleci/config.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8809634..e61d727 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,7 +16,6 @@ jobs: # fallback to using the latest cache if no exact match is found - dependencies- - run: yarn global add node-gyp && yarn install - - heroku/install - save_cache: paths: - node_modules @@ -118,11 +117,11 @@ jobs: docker tag app $DOCKER_HUB_USER_ID/my-awesome-ci-expr:latest docker push $DOCKER_HUB_USER_ID/my-awesome-ci-expr:$CIRCLE_BUILD_NUM docker push $DOCKER_HUB_USER_ID/my-awesome-ci-expr:latest - smoketest: - docker: - - image: buildpack-deps:trusty + deploy: + executor: heroku/default steps: - checkout + - heroku/install - run: name: Smoke Test command: | @@ -186,9 +185,12 @@ workflows: filters: branches: only: main + - deploy: + requires: + - build - heroku/deploy-via-git: requires: - - build + - deploy - lint - back-test-e2e - back-test-unit