Skip to content
This repository has been archived by the owner on Oct 19, 2023. It is now read-only.

Commit

Permalink
Make that several more try
Browse files Browse the repository at this point in the history
  • Loading branch information
queer committed Feb 26, 2019
1 parent ad19fd5 commit 252b4e4
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ jobs:
- checkout
- run: "docker login -u $DOCKER_USER -p $DOCKER_PASS"
- run: "docker build -t queer/singyeong:$(echo $CIRCLE_BRANCH | sed -e 's|/|_|g')-$CIRCLE_BUILD_NUM ."
branches:
ignore: master
build-and-push:
machine:
enabled: true
Expand All @@ -19,5 +17,20 @@ jobs:
- run: "docker login -u $DOCKER_USER -p $DOCKER_PASS"
- run: "docker build -t queer/singyeong:$(echo $CIRCLE_BRANCH | sed -e 's|/|_|g')-$CIRCLE_BUILD_NUM ."
- run: "docker push queer/singyeong:$(echo $CIRCLE_BRANCH | sed -e 's|/|_|g')-$CIRCLE_BUILD_NUM"
branches:
only: master

workflows:
version: 2
build:
jobs:
- build:
filters:
branches:
ignore:
- master
build-and-push:
jobs:
- build-and-push:
filters:
branches:
only:
- master

0 comments on commit 252b4e4

Please sign in to comment.