Skip to content

Commit a194d7d

Browse files
authored
Merge pull request #114 from deriv-com/ako/create-release-tag-manually
ako/ pass auth token to npm
2 parents 236f942 + 541a638 commit a194d7d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/publish_npm_package.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ jobs:
3232
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
3333
run: npm audit signatures
3434
- name: Publish
35-
run: npm publish --access public
3635
env:
3736
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
37+
run: |
38+
npm config set _authToken=${NPM_TOKEN}
39+
npm publish --access public
3840
shell: bash

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@deriv-com/ui",
33
"private": false,
4-
"version": "1.10.5",
4+
"version": "1.10.6",
55
"type": "module",
66
"main": "dist/main.js",
77
"files": [

0 commit comments

Comments
 (0)