From 7a099863b561f31d2db70d69a77e78d1f89637b4 Mon Sep 17 00:00:00 2001 From: Rael Garcia Date: Fri, 31 Jul 2020 15:07:38 +0200 Subject: [PATCH] feat: rename master branch to main --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 72a9663..36c827f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ workflows: filters: branches: ignore: - - master + - main latest: jobs: - build-n-push-latest: @@ -14,7 +14,7 @@ workflows: filters: branches: only: - - master + - main release: jobs: - build-n-push-release: @@ -42,6 +42,6 @@ jobs: machine: true steps: - checkout - - run: TAG=${CIRCLE_TAG:-master} make build-all-release + - run: TAG=${CIRCLE_TAG:-main} make build-all-release - run: docker login ${DOCKER_REGISTRY} -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD} - - run: TAG=${CIRCLE_TAG:-master} make push-all-release \ No newline at end of file + - run: TAG=${CIRCLE_TAG:-main} make push-all-release \ No newline at end of file