⬆️ Bump embed libs #241
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish @typebot.io/react package to NPM | |
on: | |
push: | |
tags: | |
- "react-v*" | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: oven-sh/setup-bun@v2 | |
- run: bun install | |
- run: bunx turbo build --filter=@typebot.io/react... | |
- run: bun run npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN | |
- run: cd packages/embeds/react && bun publish --access public |