Skip to content

Commit

Permalink
fix(packaging): fix deployment (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
fulls1z3 authored Dec 2, 2019
1 parent cfa3f2d commit aa07870
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
paths: 'node_modules'
- run: yarn ci:before
- run: yarn test:ci
- run: if [ $TRAVIS_BRANCH == "master" ] || [[ -n "$TRAVIS_TAG" ]]; then lerna version --create-release github --yes; fi
- run: if [ ${CIRCLE_BRANCH} == "master" ]; then lerna version --create-release github --yes; fi
- run: yarn build
- run: yarn ci:after
- run: if [ $TRAVIS_BRANCH == "master" ] || [[ -n "$TRAVIS_TAG" ]]; then lerna publish from-package --yes; fi
- run: if [ ${CIRCLE_BRANCH} == "master" ]; then lerna publish from-package --yes; fi
- run: bash <(curl -s https://codecov.io/bash)
- store_artifacts:
path: coverage
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Dynamic page title & meta tags utility for Angular (w/server-side rendering)",
"repository": {
"type": "git",
"url": "https://github.com/fulls1z3/ngx-meta"
"url": "https://github.com/fulls1z3/ngx-meta.git"
},
"keywords": [],
"author": {
Expand Down
2 changes: 1 addition & 1 deletion packages/@ngx-meta/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Dynamic page title & meta tags utility for Angular (w/server-side rendering)",
"repository": {
"type": "git",
"url": "https://github.com/fulls1z3/ngx-meta"
"url": "https://github.com/fulls1z3/ngx-meta.git"
},
"keywords": [
"open graph",
Expand Down

0 comments on commit aa07870

Please sign in to comment.