Skip to content

Commit

Permalink
fix: update condition syntax for Node.js 20.x in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bengeois committed Nov 1, 2024
1 parent 6a18f6f commit 25b3dab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ jobs:

# Build documentation only for Node.js 20.x
- name: Build documentation
if: ${{ matrix.node-version }} == '20.x'
if: matrix.node-version == 20.x
run: yarn build:docs

# Upload documentation artifact (only for Node.js 20.x)
- name: Upload docs
if: ${{ matrix.node-version }} == '20.x'
if: matrix.node-version == 20.x
uses: actions/upload-pages-artifact@v3
with:
path: "docs"

0 comments on commit 25b3dab

Please sign in to comment.