From df096126a74c38bf0e9a09b981637e2ae5bed3c5 Mon Sep 17 00:00:00 2001 From: "S.Gromov" Date: Sat, 11 Jul 2026 11:10:31 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=BD=D0=B0=D1=81=D1=82=D1=80=D0=BE?= =?UTF-8?q?=D0=B8=D1=82=D1=8C=20OIDC-=D0=BF=D1=83=D0=B1=D0=BB=D0=B8=D0=BA?= =?UTF-8?q?=D0=B0=D1=86=D0=B8=D1=8E=20npm?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - release job переведён на checkout и setup-node v6 - npm registry настроен явно без кеширования release job - пакет публикуется из корня через стандартный npm publish --- .github/workflows/release.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0338c35..a59956a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,15 +28,16 @@ jobs: steps: - name: Checkout release tag - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.release.tag_name || inputs.tag }} - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 24 - cache: npm + registry-url: https://registry.npmjs.org + package-manager-cache: false - name: Update npm run: npm install --global npm@latest @@ -111,4 +112,4 @@ jobs: DIST_TAG=next fi - npm publish ./release/*.tgz --access public --provenance --tag "$DIST_TAG" + npm publish --ignore-scripts --access public --tag "$DIST_TAG"