Skip to content

Commit

Permalink
feat: rename master branch to main
Browse files Browse the repository at this point in the history
  • Loading branch information
raelga committed Jul 31, 2020
1 parent 851cf5b commit 7a09986
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ workflows:
filters:
branches:
ignore:
- master
- main
latest:
jobs:
- build-n-push-latest:
context: org-global
filters:
branches:
only:
- master
- main
release:
jobs:
- build-n-push-release:
Expand Down Expand Up @@ -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
- run: TAG=${CIRCLE_TAG:-main} make push-all-release

0 comments on commit 7a09986

Please sign in to comment.