From 79947087a7983d97811c97a590c389caf2dbd7ef Mon Sep 17 00:00:00 2001 From: anthony Date: Mon, 3 Jan 2022 10:28:16 +0100 Subject: [PATCH] :construction_worker: Add branch restriction to circle ci deployments --- .circleci/config.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9b3c0d9..2f030ff 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -147,25 +147,25 @@ workflows: requires: - test - lint -# filters: -# branches: -# only: -# - main + filters: + branches: + only: + - main - deploy-netlify: requires: - build-netlify -# filters: -# branches: -# only: -# - main + filters: + branches: + only: + - main - docker-build: backendurl: *prod-backend-url requires: - test - lint -# filters: -# branches: -# only: -# - main + filters: + branches: + only: + - main