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 86348f4 commit 7b15690Copy full SHA for 7b15690
.circleci/config.yml
@@ -64,10 +64,10 @@ jobs:
64
at: /home/circleci
65
- run:
66
name: "Extract release candidate version"
67
- command: "RC_TAG=`echo ${CIRCLE_TAG} | cut -c 2-`"
+ command: RC_TAG=`echo $CIRCLE_TAG | cut -c 2-` && echo "Extracted version $RC_TAG"
68
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}'
+ command: echo "Use version $RC_TAG as 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