Skip to content
This repository was archived by the owner on May 20, 2020. It is now read-only.

Commit d0fc553

Browse files
committed
Fix CircleCI publish job
We don't want `npm` to commit any changes when we use `npm version` to change the `version` field in `package.json`.
1 parent 3ae1f22 commit d0fc553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
command: echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" > ${HOME}/.npmrc
6868
- run:
6969
name: Bump package version
70-
command: npm version ${CIRCLE_TAG}
70+
command: npm version --no-git-tag-version ${CIRCLE_TAG}
7171
- run:
7272
name: Publish package to npm
7373
command: npm publish --access=public

0 commit comments

Comments
 (0)