From 547037d3ebf8d88f6008aee25c9095fdf2e6a71c Mon Sep 17 00:00:00 2001 From: Sketchbuch Date: Tue, 5 Mar 2024 21:30:16 +0100 Subject: [PATCH] chore: update --- .github/workflows/publish.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ed06b06..f9818e5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,15 +13,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - # https://github.com/actions/setup-node/issues/32#issuecomment-525791142 - - name: Get Node Version - run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)" - id: nvm - - name: Setup Node uses: actions/setup-node@v4 with: - node-version: '${{ steps.nvm.outputs.NVMRC }}' + node-version: '${{ vars.NODE_VERSION }}' registry-url: 'https://registry.npmjs.org' - name: Install Dependencies @@ -41,15 +36,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - # https://github.com/actions/setup-node/issues/32#issuecomment-525791142 - - name: Get Node Version - run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)" - id: nvm - - name: Setup Node uses: actions/setup-node@v4 with: - node-version: '${{ steps.nvm.outputs.NVMRC }}' + node-version: '${{ vars.NODE_VERSION }}' registry-url: 'https://registry.npmjs.org' - name: Install Dependencies