Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ concurrency:
cancel-in-progress: true

permissions:
id-token: write
contents: write
pull-requests: write

Expand Down Expand Up @@ -39,10 +40,15 @@ jobs:
registry-url: "https://registry.npmjs.org"
cache: "npm"

# Ensure npm 11.5.1 or later is installed
- name: Update npm
run: npm install -g npm@latest

- run: npm ci

- run: npm run build

- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: git config --global user.email "y-infra@yandex.ru"
- run: git config --global user.name "y-infra"

- run: npm publish
Loading