Skip to content

Commit

Permalink
Merge pull request #3 from etherspot/feature/fix-pipeline
Browse files Browse the repository at this point in the history
Fix pipeline deployment
  • Loading branch information
arddluma authored Sep 29, 2023
2 parents 7e80bac + 06b9cdd commit 76ec56a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,14 @@ jobs:
name: Authenticate with registry
command: echo "//registry.npmjs.org/:_authToken=$ETHERSPOT_NPM_TOKEN" > ~/create-react-txkit-app/.npmrc
- run:
name: Build create-react-txkit-app
command: npm run build
name: Build and publish create-react-txkit-app
command: cd ./packages/create-react-app && npm install && npm publish --access=public
- run:
name: Publish package to npm
command: npm run publish
name: Build and publish cra-template
command: cd ./packages/cra-template && npm install && npm publish --access=public
- run:
name: Build and publish cra-template-typescript
command: cd ./packages/cra-template-typescript && npm install && npm publish --access=public
- run:
name: Announce Publish
command: |
Expand Down

0 comments on commit 76ec56a

Please sign in to comment.