Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
satazor committed Oct 27, 2023
1 parent 25388d9 commit 4cd448d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ jobs:
NPM_TOKEN: ${{ secrets.RELEASE_NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }}
run: |
npm whoami
# npm run release --workspace $NPM_WORKSPACE -- --increment ${{ github.event.inputs.VERSION_BUMP }} -V
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc
npm run release --workspace $NPM_WORKSPACE -- --increment ${{ github.event.inputs.VERSION_BUMP }} -V
6 changes: 3 additions & 3 deletions .release-it.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module.exports = {
git: {
changelog: 'echo "## Changelog\\n\\n$(npx @uphold/github-changelog-generator -f unreleased | tail -n +4 -f)"',
commitMessage: 'Release ${name}@${version}',
commitMessage: 'Release ${npm.name}@${version}',
requireCommits: true,
tagName: '${name}@v${version}'
tagName: '${npm.name}@v${version}'
},
github: {
release: true,
releaseName: '${name}@v${version}'
releaseName: '${npm.name}@v${version}'
},
hooks: {
'after:bump': `
Expand Down

0 comments on commit 4cd448d

Please sign in to comment.