From d9c195353eb60c7c877012373526ca9ff150a22e Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Mon, 13 May 2024 20:20:53 +0200 Subject: [PATCH] chore: Update alpha.yml workflow to use input variables for releasing --- .github/workflows/alpha.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/alpha.yml b/.github/workflows/alpha.yml index 8d851ce98..0b9ffa067 100644 --- a/.github/workflows/alpha.yml +++ b/.github/workflows/alpha.yml @@ -89,15 +89,19 @@ jobs: runs-on: ubuntu-latest needs: [build-data] steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Install Node.js uses: actions/setup-node@v3 with: node-version: 16 + - name: Checkout + uses: actions/checkout@v3 + - uses: pnpm/action-setup@v2 + id: pnpm-install + with: + version: 8 + run_install: false - name: Install dependencies run: pnpm install