From 042394936b5d1a536d64f0c3ba02bf4977c11714 Mon Sep 17 00:00:00 2001 From: Cristopher Pinzon Date: Tue, 5 Nov 2024 15:19:57 -0500 Subject: [PATCH] fix release publishing --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6b9babd..975161c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,16 +13,16 @@ jobs: - name: Check out the code uses: actions/checkout@v3 - - name: Set up Node.js - uses: actions/setup-node@v3 + - name: Install Node.js + uses: actions/setup-node@v4 with: - node-version: 'lts/*' - cache: 'npm' + node-version: 20 + registry-url: "https://registry.npmjs.org" - name: Install dependencies run: npm install - name: Publish to npm env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_SECRET }} run: npm publish