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

Commit

Permalink
fix circle config
Browse files Browse the repository at this point in the history
  • Loading branch information
GiladShoham committed Oct 23, 2019
1 parent ffcea53 commit b64e5fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
at: ./
- run:
name: Setup bit version environment variables
command: cd bit && echo "export BIT_JS_VERSION=$(cat ./package.json | jq .version -r)" >> $BASH_ENV && source $BASH_ENV
command: cd bit-javascript && echo "export BIT_JS_VERSION=$(cat ./package.json | jq .version -r)" >> $BASH_ENV && source $BASH_ENV
-
run:
name: 'installing semver tool'
Expand All @@ -73,7 +73,7 @@ jobs:
-
run:
name: 'validate tag match version in package.json'
command: 'cd bit && ./scripts/compare-versions.sh $CIRCLE_TAG v$BIT_JS_VERSION'
command: 'cd bit-javascript && ./scripts/compare-versions.sh $CIRCLE_TAG v$BIT_JS_VERSION'
npm-publish:
<<: *defaults
steps:
Expand All @@ -86,7 +86,7 @@ jobs:
-
run:
name: Publish bit to the npm registry
command: 'cd bit && npm publish'
command: 'cd bit-javascript && npm publish'
github-release:
<<: *defaults
steps:
Expand All @@ -97,7 +97,7 @@ jobs:
# name: set GitHub token
# command: export GH_RELEASE_GITHUB_API_TOKEN=$ghToken
-
run: 'cd bit && npm run release:circle'
run: 'cd bit-javascript && npm run release:circle'
build:
<<: *defaults
steps:
Expand Down

0 comments on commit b64e5fa

Please sign in to comment.