From 850df645bdb5d012fd81b423f1e02e9b2f30a9db Mon Sep 17 00:00:00 2001 From: Ayo Date: Thu, 2 Apr 2026 18:10:54 +0200 Subject: [PATCH] chore: update release --- scripts/release.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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