From 642429cbc696aca62bf3f4c9798d96592cb85694 Mon Sep 17 00:00:00 2001 From: Jorge Luis Calleja Alvarado Date: Tue, 18 Feb 2025 18:45:23 -0600 Subject: [PATCH] fix(core): Fix actions --- .github/workflows/release.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 44ea0f1..97429f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,6 +10,9 @@ on: release: types: [created] +env: + PNPM_VERSION: 9.15.0 + jobs: publish-npm: runs-on: ubuntu-latest @@ -20,16 +23,16 @@ jobs: - uses: actions/checkout@v4 - - name: 🔥 Setup corepack - run: | - corepack enable - - name: Setup Node.js environment uses: actions/setup-node@v4 with: node-version-file: package.json registry-url: https://registry.npmjs.org/ - cache: "pnpm" + + - name: 🔥 Installing pnpm + run: | + corepack enable + corepack prepare pnpm@${{ env.PNPM_VERSION }} --activate - name: 📦 Install Dependencies run: |