Skip to content

Commit

Permalink
ci: fix env usage
Browse files Browse the repository at this point in the history
  • Loading branch information
sandro-salzmann authored Oct 9, 2023
1 parent 51b9806 commit ff329b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
runs-on: ubuntu-latest

env:
node-version: 18.x
NODE_VERSION: 18.x

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ node-version }}
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ node-version }}
node-version: ${{ env.NODE_VERSION }}

- name: Build
run: |
Expand Down

0 comments on commit ff329b7

Please sign in to comment.