Skip to content

fix(ci/changesets): bump version #36

fix(ci/changesets): bump version

fix(ci/changesets): bump version #36

Workflow file for this run

name: Changesets
on:
push:
paths:
- .changeset/**
- .github/workflows/changesets.yml
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
version:
timeout-minutes: 15
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
id: pnpm-install
with:
version: latest
run_install: false
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version: latest
registry-url: 'https://registry.npmjs.org'
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
- run: pnpm install --frozen-lockfile
- uses: changesets/action@v1
with:
version: pnpm changeset version
commit: 'chore: πŸ”– update versions'
title: 'chore: πŸ”– update versions'
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true