Skip to content

Commit

Permalink
fix(ci): configure npm registry
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis committed Sep 26, 2023
1 parent de24428 commit 7196ba0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-test-publish-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ jobs:
git config user.name $GH_USER
git config user.email $GH_EMAIL
- name: 'setup npm registry'
- name: 'Setup npm registry'
run: |
echo "registry=https://registry.npmjs.org/" > .npmrc
echo "@veramo-community:registry=https://registry.npmjs.org/" > .npmrc
echo "registry=https://registry.npmjs.org/" >> .npmrc
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
npm whoami
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"conventionalCommits": true,
"gitRemote": "origin",
"message": "chore(release): %s [skip ci]"
"message": "chore(release): :rocket: New version %s [skip ci]"
}
}
}

0 comments on commit 7196ba0

Please sign in to comment.