From 88d6dc1df253cc41f183b0e2c59cac6fc2b67aa6 Mon Sep 17 00:00:00 2001 From: Christian Bromann Date: Sat, 7 Jan 2023 12:32:46 +0100 Subject: [PATCH] install deps during release pipeline --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 16eddfa..f1eca07 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,9 +36,11 @@ jobs: with: ref: 'main' fetch-depth: 0 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v3 with: node-version: 18.x + - name: Install Dependencies + run: npm ci - name: NPM Setup run: | npm set registry "https://registry.npmjs.org/" @@ -59,4 +61,4 @@ jobs: env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - if: ${{ github.event.inputs.preRelease == 'yes' }} \ No newline at end of file + if: ${{ github.event.inputs.preRelease == 'yes' }}