Skip to content

Commit

Permalink
fix: workflow (#27)
Browse files Browse the repository at this point in the history
* fix: git release workflow

* style: format
  • Loading branch information
Benehiko authored Oct 13, 2022
1 parent 19c1a9d commit dd41e0b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,4 @@ jobs:
- run: npm run build:clean
- run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN_AENEASR }}" > ~/.npmrc
- run:
npx lerna version --no-private --no-git-tag-version --no-push -y ${{
github.event.release.tag_name }}
- run: npx lerna publish from-package -y
- run: npm lerna publish from-git -y
6 changes: 4 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useNx": true,
"useWorkspaces": true,
"version": "0.0.1-alpha.3",
"version": "0.0.1-alpha.5",
"command": {
"version": {
"allowBranch": "main",
"conventionalCommits": true,
"private": false
"private": false,
"message": "chore(release): version bump",
"noGitTagVersion": true
},
"publish": {
"private": false
Expand Down

0 comments on commit dd41e0b

Please sign in to comment.