Skip to content

Bump tailwind-merge from 3.4.0 to 3.5.0 (#18) #19

Bump tailwind-merge from 3.4.0 to 3.5.0 (#18)

Bump tailwind-merge from 3.4.0 to 3.5.0 (#18) #19

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Create release
permissions:
id-token: write
pull-requests: write
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
with:
run_install: false
- uses: actions/setup-node@v4
with:
cache: pnpm
cache-dependency-path: ./pnpm-lock.yaml
node-version-file: "./package.json"
# require latest npm to get version above 11.5.1 for trusted publishing
# will not be necessary once we start using node 24
- name: Install latest npm
run: npm install -g npm@latest
- run: pnpm install
- uses: changesets/action@06245a4e0a36c064a573d4150030f5ec548e4fcc # v1.4.10
with:
publish: pnpm changeset:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}