Skip to content

Commit

Permalink
feat: remove --follow-tags when pushing
Browse files Browse the repository at this point in the history
BREAKING CHANGE: gacp no longer push tags. closes #123
  • Loading branch information
vivaxy committed May 4, 2022
1 parent c4086a7 commit f94879e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
_
_
2 changes: 1 addition & 1 deletion src/gacp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async function runTasks({
}

if (needsPush) {
await git.push({ cwd: gitRoot, followTags: true, setUpstream: true });
await git.push({ cwd: gitRoot, setUpstream: true });
await runHook(hooks.postpush, { cwd: gitRoot });
} else {
if (push) {
Expand Down

0 comments on commit f94879e

Please sign in to comment.