Skip to content

Commit

Permalink
👷 ci: Fixed invalid variable call in Actions file
Browse files Browse the repository at this point in the history
  • Loading branch information
fwestling committed Mar 21, 2024
1 parent 19a2cfc commit 14a37f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 14a37f6

Please sign in to comment.