chore: set git user

This commit is contained in:
Daniel Roe 2023-04-20 10:42:20 +01:00
parent e6cc4aa02a
commit 2a596c2b3d
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,8 @@ async function main () {
// Create and push a branch with bumped versions if it has not already been created
const branchExists = execSync(`git ls-remote --heads origin v${newVersion}`).toString().trim().length > 0
if (!branchExists) {
execSync('git config --global user.email "daniel@roe.dev"')
execSync('git config --global user.name "Daniel Roe"')
execSync(`git checkout -b v${newVersion}`)
for (const pkg of workspace.packages.filter(p => !p.data.private)) {