🐛 (rating) Fix icons fill color #142
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/nextjs package to NPM | |
on: | |
push: | |
tags: | |
- 'nextjs-v*' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm i --frozen-lockfile | |
- run: pnpm turbo build [email protected]/nextjs... | |
- run: cd packages/embeds/nextjs && pnpm publish --no-git-checks --access public |