Skip to content

chore(deps): update dependency @changesets/cli to ^2.27.8 #1054

chore(deps): update dependency @changesets/cli to ^2.27.8

chore(deps): update dependency @changesets/cli to ^2.27.8 #1054

Workflow file for this run

name: Canary Release
on:
push:
workflow_dispatch:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
publish-canary:
name: Publish Canary
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup PNPM
uses: pnpm/[email protected]
with:
version: 7.19.0
- name: Use Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'pnpm'
- name: Setup NPM credentials
run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Install Dependencies
run: pnpm i
- name: Release Canary
id: canary
uses: 'kamilkisiela/release-canary@master'
with:
npm-token: ${{ secrets.NPM_TOKEN }}
npm-script: 'pnpm release:canary'
changesets: true