Skip to content

Commit d364c5d

Browse files
committed
ci: fix release script
1 parent bea6442 commit d364c5d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Publish to NPM
2222
run: |
2323
npm install
24-
npm run publish
24+
npm run release
2525
env:
2626
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2727

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"lint:fix": "eslint src/**/*.ts --fix",
2020
"format": "prettier --write .",
2121
"prepare": "npm run build",
22-
"publish": "npm run build && npm publish"
22+
"release": "npm run build && npm publish"
2323
},
2424
"license": "ISC",
2525
"dependencies": {

0 commit comments

Comments
 (0)