Skip to content

Commit

Permalink
fix(core): Fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
wootsbot committed Feb 19, 2025
1 parent 0179332 commit 642429c
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
release:
types: [created]

env:
PNPM_VERSION: 9.15.0

jobs:
publish-npm:
runs-on: ubuntu-latest
Expand All @@ -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: |
Expand Down

0 comments on commit 642429c

Please sign in to comment.