Skip to content
This repository was archived by the owner on Dec 4, 2022. It is now read-only.

Commit b64e5fa

Browse files
committed
fix circle config
1 parent ffcea53 commit b64e5fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
at: ./
6161
- run:
6262
name: Setup bit version environment variables
63-
command: cd bit && echo "export BIT_JS_VERSION=$(cat ./package.json | jq .version -r)" >> $BASH_ENV && source $BASH_ENV
63+
command: cd bit-javascript && echo "export BIT_JS_VERSION=$(cat ./package.json | jq .version -r)" >> $BASH_ENV && source $BASH_ENV
6464
-
6565
run:
6666
name: 'installing semver tool'
@@ -73,7 +73,7 @@ jobs:
7373
-
7474
run:
7575
name: 'validate tag match version in package.json'
76-
command: 'cd bit && ./scripts/compare-versions.sh $CIRCLE_TAG v$BIT_JS_VERSION'
76+
command: 'cd bit-javascript && ./scripts/compare-versions.sh $CIRCLE_TAG v$BIT_JS_VERSION'
7777
npm-publish:
7878
<<: *defaults
7979
steps:
@@ -86,7 +86,7 @@ jobs:
8686
-
8787
run:
8888
name: Publish bit to the npm registry
89-
command: 'cd bit && npm publish'
89+
command: 'cd bit-javascript && npm publish'
9090
github-release:
9191
<<: *defaults
9292
steps:
@@ -97,7 +97,7 @@ jobs:
9797
# name: set GitHub token
9898
# command: export GH_RELEASE_GITHUB_API_TOKEN=$ghToken
9999
-
100-
run: 'cd bit && npm run release:circle'
100+
run: 'cd bit-javascript && npm run release:circle'
101101
build:
102102
<<: *defaults
103103
steps:

0 commit comments

Comments
 (0)