diff --git a/scripts/release.ts b/scripts/release.ts index 75f0988..a98e29e 100644 --- a/scripts/release.ts +++ b/scripts/release.ts @@ -20,4 +20,10 @@ console.log('Checkout main branch') await git.checkout('main') console.log('Deleting local release branch') -await git.branch(['-D', 'release']) \ No newline at end of file +await git.branch(['-D', 'release']) + +// TODO: handle multiple remotes with a data structure +console.log('Push tags') +await git.push(['--tags']) +await git.push(['--tags', 'gh']) +await git.push(['--tags', 'sh']) \ No newline at end of file