We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0444cf commit 64009d2Copy full SHA for 64009d2
lib/acp.js
@@ -23,7 +23,7 @@ export default (commitMessage) => {
23
const commitCommand = `git commit -m "${commitMessage}"`;
24
console.info(commitCommand);
25
sh.exec(commitCommand);
26
- const pushCommand = `git push ${getRemote()} ${getBranch()}`;
+ const pushCommand = `git push ${getRemote()} ${getBranch()} --tag`;
27
console.info(pushCommand);
28
sh.exec(pushCommand);
29
};
0 commit comments