From e5c57d1cea986bd27cc274bd71ac160c3b7797aa Mon Sep 17 00:00:00 2001 From: Arpit Bharti Date: Mon, 27 Sep 2021 21:50:09 +0530 Subject: [PATCH] Update release script to push tags and commits --- scripts/release.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/release.ts b/scripts/release.ts index e170c92..d70dfa5 100644 --- a/scripts/release.ts +++ b/scripts/release.ts @@ -55,3 +55,4 @@ for (const pkg of packages) { execSync('git add .', { stdio: 'inherit' }) execSync(`git commit -m "release: v${version}"`, { stdio: 'inherit' }) execSync(`git tag -a v${version} -m "v${version}"`, { stdio: 'inherit' }) +execSync(`git push --follow-tags`, { stdio: 'inherit' })