Skip to content

Commit

Permalink
Fix publish script ambiguity (#704)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasIO authored Nov 9, 2023
1 parent af9c896 commit 59fce7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: changesets/action@v1
with:
# This expects you to have a script called release which does a build for your packages and calls changeset publish
publish: pnpm publish
publish: pnpm ci:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"gen:docs:watch": "nodemon --watch \"tooling/api-documenter/src/**/*\" --watch \"packages/react/src/**/*\" --ignore \"packages/react/src/assets/**/*\" -e js,jsx,ts,tsx -x \"pnpm gen:docs\"",
"lint": "turbo run lint",
"preinstall": "npx only-allow pnpm",
"publish": "turbo run build --filter=./packages/* && pnpm gen:docs && pnpm publish --filter=\"./packages/*\" --filter=@livekit/components-js-docs",
"ci:publish": "turbo run build --filter=./packages/* && pnpm gen:docs && pnpm publish --filter=\"./packages/*\" --filter=@livekit/components-js-docs",
"start:next": "turbo run start --filter=@livekit/component-example-next...",
"test": "turbo run test",
"tooling:update-readme-nav": "node tooling/readme-manager/update-nav-in-readmes.js",
Expand Down

0 comments on commit 59fce7f

Please sign in to comment.