From 18e650ee65bda412d2fa1df34e7fecc8f8004a9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rge=20N=C3=A6ss?= Date: Thu, 15 Feb 2024 10:54:18 +0100 Subject: [PATCH] fix(ci): use pnpm for package releases --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 14e68d232208..c311fafb4c5e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,11 +29,11 @@ jobs: uses: actions/setup-node@v4 with: node-version: lts/* - cache: 'yarn' + cache: 'pnpm' registry-url: 'https://registry.npmjs.org' - name: Install - run: yarn install --frozen-lockfile + run: pnpm install - name: Pre-flight run: | @@ -82,7 +82,7 @@ jobs: ${{ inputs.version }} - name: Build - run: yarn build + run: pnpm build - name: Publish run: |