We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01c4e2b commit d8a4735Copy full SHA for d8a4735
1 file changed
packages/release/src/index.js
@@ -244,7 +244,7 @@ const generateContributors = () => {
244
const createCommitAndTag = (version) => {
245
console.log("Creating commit and tag... Pushing to Github...");
246
runCommand(`git add .`);
247
- runCommand(`git commit -m "chore: release ${version}" --no-verify`);
+ runCommand(`git commit -m "chore: release ${version}"`);
248
runCommand(`git tag ${version}`);
249
runCommand(`git push origin master --tags --no-verify`);
250
};
0 commit comments