Skip to content

style: updated the packages versioning #6

style: updated the packages versioning

style: updated the packages versioning #6

Workflow file for this run

name: Publish to npm
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
registry-url: https://registry.npmjs.org
- run: pnpm install
- name: Build all packages
run: pnpm build
- name: Publish all packages
run: pnpm -r publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}