Skip to content

Commit 64009d2

Browse files
committed
fix(push): ✨push with tag
using to enabled push with tag
1 parent c0444cf commit 64009d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/acp.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default (commitMessage) => {
2323
const commitCommand = `git commit -m "${commitMessage}"`;
2424
console.info(commitCommand);
2525
sh.exec(commitCommand);
26-
const pushCommand = `git push ${getRemote()} ${getBranch()}`;
26+
const pushCommand = `git push ${getRemote()} ${getBranch()} --tag`;
2727
console.info(pushCommand);
2828
sh.exec(pushCommand);
2929
};

0 commit comments

Comments
 (0)