Skip to content

feat(share-button): small perf and size refactor for v1 release #16

feat(share-button): small perf and size refactor for v1 release

feat(share-button): small perf and size refactor for v1 release #16

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: pnpm/action-setup@v3
with:
version: 9
- run: pnpm install
- run: pnpm run lint
- run: pnpm run build
- uses: changesets/action@v1
with:
publish: pnpm run release
commit: 'chore: version packages'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}