ci: Change token used for dist-tag updates (#29072)

This commit is contained in:
Matsu 2026-04-24 13:05:36 +03:00 committed by GitHub
parent 0c5d82ad2c
commit 0f7a048b37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ jobs:
echo "Package '$PACKAGE_NAME' does not exist on NPM yet. Proceeding with publish." echo "Package '$PACKAGE_NAME' does not exist on NPM yet. Proceeding with publish."
- name: Configure NPM token - name: Configure NPM token
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_INITIAL_PUBLISH_TOKEN }}" > ~/.npmrc run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_DIST_TAG_AND_INITIAL_PUBLISH_TOKEN }}" > ~/.npmrc
- name: Publish package - name: Publish package
working-directory: ${{ github.event.inputs.package-path }} working-directory: ${{ github.event.inputs.package-path }}

View File

@ -29,4 +29,4 @@ jobs:
- name: Set npm packages to latest - name: Set npm packages to latest
run: node ./.github/scripts/set-latest-for-monorepo-packages.mjs run: node ./.github/scripts/set-latest-for-monorepo-packages.mjs
env: env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_DIST_TAG_AND_INITIAL_PUBLISH_TOKEN }}