Skip to content

Commit 236f942

Browse files
authored
Merge pull request #113 from deriv-com/ako/create-release-tag-manually
Ako/ to create the release tag manually
2 parents 4d5318b + cf88505 commit 236f942

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

.github/workflows/publish_npm_package.yml

+4-11
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Release
22
on:
33
release:
44
types: [published]
5-
push:
6-
branches: [main]
75

86
permissions:
97
contents: read # for checkout
@@ -23,7 +21,6 @@ jobs:
2321
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
2422
with:
2523
fetch-depth: 0
26-
token: ${{ secrets.CI_GITHUB_TOKEN }}
2724
- name: Setup Node.js
2825
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
2926
with:
@@ -34,12 +31,8 @@ jobs:
3431
run: npm clean-install
3532
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
3633
run: npm audit signatures
37-
- name: Prepublish
38-
run: npm run prepublish
39-
- name: Release
40-
if: success()
34+
- name: Publish
35+
run: npm publish --access public
4136
env:
42-
CI: true
43-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44-
NPM_TOKEN: ${{ secrets.NPM_TOKEN}}
45-
run: npx semantic-release
37+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
38+
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.4",
4+
"version": "1.10.5",
55
"type": "module",
66
"main": "dist/main.js",
77
"files": [

0 commit comments

Comments
 (0)