From 545cbf61608a2ade500dd6c379dd83d82ead4e98 Mon Sep 17 00:00:00 2001 From: ibulog <20479184+ibulog@users.noreply.github.com> Date: Wed, 18 Dec 2024 16:20:32 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20npm=20publish=E7=94=A8=E3=81=AE?= =?UTF-8?q?=E3=83=88=E3=83=BC=E3=82=AF=E3=83=B3=E5=85=A5=E3=82=8C=E6=9B=BF?= =?UTF-8?q?=E3=81=88=20(#593)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publishRelease.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publishRelease.yml b/.github/workflows/publishRelease.yml index c399916..72daba7 100644 --- a/.github/workflows/publishRelease.yml +++ b/.github/workflows/publishRelease.yml @@ -34,11 +34,11 @@ jobs: - run: pnpm publish if: ${{ env.IS_PRERELEASE == 'false' }} env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.KUFU_NPM_RELEASE_TOKEN }} - run: pnpm publish --tag prerelease if: ${{ env.IS_PRERELEASE == 'true' }} env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.KUFU_NPM_RELEASE_TOKEN }} - run: echo NEW_TAG=$(git describe) >> $GITHUB_ENV - run: git push origin $NEW_TAG - run: pnpm dlx ts-node ./scripts/getLatestChangelog.ts > ${{ env.CHANGELOG_PATH }}