Skip to content

Commit

Permalink
add build stage
Browse files Browse the repository at this point in the history
  • Loading branch information
yuki-js committed Jan 27, 2024
1 parent de9df8b commit b62722b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Set PACKAGE_VERSION
run: echo "PACKAGE_VERSION=$(cat lerna.json | jq -r .version)" >> $GITHUB_ENV
- name: Install
run: yarn install
run: npm install
- name: Publish
run: npm run ci:release
env:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"ci:versionup:major": "lerna version major --no-push --no-git-tag-version --yes && npm run commit-version",
"commit-version": "git add . && git commit -m \"chore(release): v`node -p 'require(\"./lerna.json\").version'`\"",
"release": "lerna publish from-package",
"ci:release": "lerna publish from-package --yes"
"ci:release": "npm run build && lerna publish from-package --yes"
},
"keywords": [],
"author": "",
Expand Down

0 comments on commit b62722b

Please sign in to comment.