Skip to content

Commit

Permalink
ci: fix the publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fkleuver committed Sep 20, 2018
1 parent 814b813 commit ae76a30
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ jobs:
name: Merge tag into release
command: |
git checkout release
git merge $CIRCLE_TAG --squash
git merge $CIRCLE_TAG --squash -Xtheirs
git commit --no-edit
git push
Expand Down Expand Up @@ -307,7 +307,7 @@ workflows:
- e2e_browserstack:
requires:
- install
- publish_latest:
- request_publish_latest:
type: approval
requires:
- build
Expand All @@ -317,6 +317,12 @@ workflows:
filters:
branches:
only: release
- publish_latest:
requires:
- request_publish_latest
filters:
branches:
only: release

# This workflow runs on tag push
prepare_release:
Expand Down

0 comments on commit ae76a30

Please sign in to comment.