We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc6c461 commit e2c9606Copy full SHA for e2c9606
1 file changed
.github/workflows/release.yml
@@ -10,6 +10,7 @@ concurrency:
10
cancel-in-progress: true
11
12
permissions:
13
+ id-token: write
14
contents: write
15
pull-requests: write
16
@@ -39,10 +40,15 @@ jobs:
39
40
registry-url: "https://registry.npmjs.org"
41
cache: "npm"
42
43
+ # Ensure npm 11.5.1 or later is installed
44
+ - name: Update npm
45
+ run: npm install -g npm@latest
46
+
47
- run: npm ci
48
49
- run: npm run build
50
- - run: npm publish --access public
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
51
+ - run: git config --global user.email "y-infra@yandex.ru"
52
+ - run: git config --global user.name "y-infra"
53
54
+ - run: npm publish
0 commit comments