Skip to content

Commit 1175f64

Browse files
author
txix
committed
2025-12-16 16:48:14: merge [main:0691d926489e358bc1318cb0feec144d5e5c481a];
1 parent 4e870e2 commit 1175f64

4 files changed

Lines changed: 16 additions & 11 deletions

File tree

.github/workflows/main.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,25 @@ on:
33
push:
44
tags:
55
- 'v*'
6+
7+
permissions:
8+
contents: read
9+
id-token: write
10+
611
jobs:
712
build:
813
runs-on: ubuntu-latest
9-
permissions:
10-
contents: read
11-
id-token: write
1214
steps:
1315
- uses: actions/checkout@v4
1416
# Setup .npmrc file to publish to npm
1517
- uses: actions/setup-node@v4
1618
with:
1719
node-version: '20.x'
1820
registry-url: 'https://registry.npmjs.org'
19-
- run: npm install @rollup/rollup-linux-x64-gnu --save-optional
21+
- name: Install optional rollup binary
22+
run: npm install @rollup/rollup-linux-x64-gnu --save-optional
23+
- name: Update npm
24+
run: npm install -g npm@latest
2025
- run: npm ci
21-
- run: npm run build
22-
- run: npm publish --provenance --access public
23-
env:
24-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
26+
- run: npm run build --if-present
27+
- run: npm publish

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
### 0.23.2
2+
- Обновлены github workflows
13
### 0.23.1
24
- Добавлена возможность писать кастомный текст на страницах NoData и EmptyData
35
### 0.23.0

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "isp-ui-kit",
3-
"version": "0.23.1",
3+
"version": "0.23.2",
44
"description": "react ui lib for project",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)