From cbe3129942775c8c1b7bf60a5b888399d08de081 Mon Sep 17 00:00:00 2001 From: Chrilleweb Date: Mon, 26 Jan 2026 18:22:42 +0100 Subject: [PATCH] fix: modifed release.yml --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b38c4cb..998fe97 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,6 +39,8 @@ jobs: needs: check if: needs.check.outputs.should_release == 'true' runs-on: ubuntu-latest + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} steps: - uses: actions/checkout@v4 @@ -57,6 +59,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 + registry-url: 'https://registry.npmjs.org' - run: pnpm install @@ -64,4 +67,3 @@ jobs: run: pnpm release -- --ci env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }}