We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using tagPrefix and I'm getting the following error: "Error: No semver tags found"
conventionalGithubReleaser( { type: "oauth", url: 'https://api.github.com', token: process.env.GITHUB_TOKEN, }, { preset: "angular", tagPrefix: `${app}@`, }, null, { from, to }, (err, responses) => { if(err) console.log(err); else console.log(responses); } );
It seems that the tagPrefix option is not applied to 'git-semver-tags'.
releaser-tools/packages/conventional-github-releaser/src/index.js
Line 50 in 3fc007b
I'm not sure exactly what side effects it will have, but shouldn't it be modified like this?
Q.nfcall( gitSemverTags, { tagPrefix: changelogOpts.tagPrefix || '' }, function (err, tags) { if (err) userCb(err) else resolve(tags) } )
The text was updated successfully, but these errors were encountered:
I'm having the same issue here. It will be awesome to support tagPrefix
Sorry, something went wrong.
No branches or pull requests
I'm using tagPrefix and I'm getting the following error: "Error: No semver tags found"
It seems that the tagPrefix option is not applied to 'git-semver-tags'.
releaser-tools/packages/conventional-github-releaser/src/index.js
Line 50 in 3fc007b
I'm not sure exactly what side effects it will have, but shouldn't it be modified like this?
The text was updated successfully, but these errors were encountered: