From 3b532b3e2bbfdb00d080357c5e982fc99f540daf Mon Sep 17 00:00:00 2001 From: PalmDevs Date: Sat, 19 Oct 2024 21:04:57 +0700 Subject: [PATCH] ci(publish): fix executable not found --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bde703ad..2eec45d8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,16 +14,16 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: latest + - name: Install Node.js uses: actions/setup-node@v4 with: node-version: 22 cache: pnpm - - - name: Install pnpm - uses: pnpm/action-setup@v4 - with: - version: latest - name: Install dependencies run: pnpm install --frozen-lockfile