From 14a37f6131c536c3c5136083562e26ffda29678f Mon Sep 17 00:00:00 2001 From: Fred Westling Date: Thu, 21 Mar 2024 19:18:34 +1100 Subject: [PATCH] :construction_worker: ci: Fixed invalid variable call in Actions file --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b7654e3..c42b432 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ concurrency: ${{ github.workflow }}-${{ github.ref }} env: CI: true - NODE_VERSION: 20 + NODE_VERSION: "20.x" PNPM_CACHE_FOLDER: .pnpm-store jobs: @@ -30,7 +30,7 @@ jobs: - name: setup node.js uses: actions/setup-node@v3 with: - node-version: ${{ NODE_VERSION }} + node-version: ${{ env.NODE_VERSION }} - name: install pnpm run: npm i pnpm@latest -g