Skip to content

Commit b4473bc

Browse files
authored
Merge pull request #26 from davidecaruso/fix-release-workflow
Fix release workflow
2 parents 4d57478 + d068512 commit b4473bc

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
run: yarn build
2323

2424
- name: publish to registry
25-
run: yarn publish
25+
run: npm publish
2626
env:
2727
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "shell.js",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"description": "A JavaScript library to create HTML terminals in web pages.",
55
"author": "Davide Caruso <davide.caruso93@gmail.com>",
66
"homepage": "https://shelljs.io",
@@ -17,7 +17,6 @@
1717
"eslint": "eslint --fix-dry-run ./",
1818
"eslint:fix": "eslint --fix ./",
1919
"prettier": "prettier --write ./src ./webpack.*.js",
20-
"publish": "npm publish",
2120
"test": "mocha -r mocha.module.js -r ts-node/register --globals window **/*.test.ts",
2221
"test:watch": "npm run test -- --watch",
2322
"test:coverage": "nyc npm run test",

0 commit comments

Comments
 (0)