Skip to content

chore: update versions (#218) #87

chore: update versions (#218)

chore: update versions (#218) #87

Workflow file for this run

name: Release
on:
push:
branches:
- main
env:
CI: true
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- uses: pnpm/action-setup@v2
with:
version: 8.x.x
- name: install dependencies
run: pnpm install
- name: create and publish versions
uses: changesets/action@v1
with:
version: pnpm ci:version
commit: 'chore: update versions'
title: 'chore: update versions'
publish: pnpm ci:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}