diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index d6d508c..29b44ba 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -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"