Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(packaging): fix deployment #203

Merged
merged 1 commit into from
Dec 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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