Skip to content

Commit

Permalink
re-enable follow tags
Browse files Browse the repository at this point in the history
  • Loading branch information
marikaner committed Sep 13, 2024
1 parent 99861d0 commit bd37626
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/actions/commit-and-tag/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions build-packages/commit-and-tag/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ async function commitAndTag(version: string) {
info(`git tag`);
await tag(`v${version}`, cwd);
info(`git push`);
// TODO: reenable follow-tags
await command('git push'); // --follow-tags');
await command('git push --follow-tags');
}

commitAndTag(getInput('version')).catch(err => {
Expand Down

0 comments on commit bd37626

Please sign in to comment.