Skip to content

Commit 7b15690

Browse files
fix: test circle ci script
1 parent 86348f4 commit 7b15690

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ jobs:
6464
at: /home/circleci
6565
- run:
6666
name: "Extract release candidate version"
67-
command: "RC_TAG=`echo ${CIRCLE_TAG} | cut -c 2-`"
67+
command: RC_TAG=`echo $CIRCLE_TAG | cut -c 2-` && echo "Extracted version $RC_TAG"
6868
- run:
6969
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}'
70+
command: echo "Use version $RC_TAG as tag" && npm version -git-tag-version false $RC_TAG
7171
- run: npm publish --tag rc --access public
7272
workflows:
7373
main-workflow:

0 commit comments

Comments
 (0)