From 62bc4d6c15c6dc6b526733d45481c164ef6f5f87 Mon Sep 17 00:00:00 2001 From: Lars Holmberg Date: Mon, 19 Aug 2024 20:21:32 +0200 Subject: [PATCH] Switch to use NPM_AUTH_TOKEN instead of NODE_AUTH_TOKEN --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dafaea7c50..666c0ee538 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -231,7 +231,7 @@ jobs: cmd: publish --no-git-tag-version --non-interactive --new-version ${{ github.ref_name }} dir: locust/webui env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} # The following is disabled because it has stopped working. # - name: Tweet on release # uses: infraway/tweet-action@v1.0.1 @@ -293,4 +293,4 @@ jobs: cmd: publish --no-git-tag-version --non-interactive --tag next --new-version ${{ env.TAG }}-next-${{ github.run_id }} dir: locust/webui env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}