@favware/cliff-jumper
Version:
A small CLI tool to create a semantic release and git-cliff powered Changelog
11 lines • 347 B
JavaScript
import { doActionAndLog } from '#lib/utils';
import { execa } from 'execa';
export function pushTag(options) {
return doActionAndLog('Pushing tag', async () => {
if (!options.dryRun) {
await execa('git', ['push']);
await execa('git', ['push', '--tags']);
}
});
}
//# sourceMappingURL=push-tag.js.map