From 3375557e2d0708694772be4ee5c7bde4c515843f Mon Sep 17 00:00:00 2001 From: Pringgo Radianto Date: Mon, 12 Aug 2024 14:18:23 +0700 Subject: [PATCH] fix(ci): fix npm token variable name --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8b158d1..7f97e22 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,6 +29,6 @@ jobs: - name: release run: yarn release env: - NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - NPM_TOKEN: ${{secrets.NODE_AUTH_TOKEN}} + NPM_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}