From 51167a21dfd4e5f49ac5222dd4fc714afea39b0b Mon Sep 17 00:00:00 2001 From: Jan Kowalleck Date: Mon, 17 Jun 2024 15:48:34 +0200 Subject: [PATCH] chore: maybe fix release pipeline Signed-off-by: Jan Kowalleck --- .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 6bcb0f28..56bf1370 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,6 +46,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: + - name: Setup Node.js ${{ env.NODE_ACTIVE_LTS }} + # see https://github.com/actions/setup-node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODE_ACTIVE_LTS }} - name: enable yarn # needed in some tests run: |- corepack enable @@ -59,11 +64,6 @@ jobs: set -eux git config --local user.email "${GITHUB_ACTOR}@users.noreply.github.com" git config --local user.name "${GITHUB_ACTOR}" - - name: Setup Node.js ${{ env.NODE_ACTIVE_LTS }} - # see https://github.com/actions/setup-node - uses: actions/setup-node@v4 - with: - node-version: ${{ env.NODE_ACTIVE_LTS }} ## ! no npm build at the moment - name: bump VERSION id: bump