We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b15690 commit 4f7cbcaCopy full SHA for 4f7cbca
.circleci/config.yml
@@ -63,11 +63,8 @@ jobs:
63
- attach_workspace:
64
at: /home/circleci
65
- run:
66
- name: "Extract release candidate version"
67
- command: RC_TAG=`echo $CIRCLE_TAG | cut -c 2-` && echo "Extracted version $RC_TAG"
68
- - run:
69
- name: "Change default version from package.json for Git tag"
70
- command: echo "Use version $RC_TAG as tag" && npm version -git-tag-version false $RC_TAG
+ name: "Extract release candidate version and update package.json"
+ command: RC_TAG=`echo $CIRCLE_TAG | cut -c 2-` && echo "Extracted version $RC_TAG" && npm version -git-tag-version false $RC_TAG
71
- run: npm publish --tag rc --access public
72
workflows:
73
main-workflow:
0 commit comments