From 1c6022ac171cff7263b404c00df9251d8ca6f5c5 Mon Sep 17 00:00:00 2001 From: David Khourshid Date: Fri, 2 Aug 2024 10:14:46 -0400 Subject: [PATCH] Try npm --- .github/workflows/release.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0aa9588..a7fe0f0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,11 +25,19 @@ jobs: - uses: actions/checkout@v4 - uses: ./.github/actions/ci-setup + - name: Setup Node.js 20.x + uses: actions/setup-node@v4 + with: + node-version: 20.x + + - name: Install dependencies + run: npm install + - name: Create Release Pull Request or Publish to npm uses: changesets/action@v1 with: - publish: pnpm run release - version: pnpm run version + publish: npm run release + version: npm run version env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}