Skip to content

Commit

Permalink
update execs
Browse files Browse the repository at this point in the history
  • Loading branch information
vercel-release-bot committed Aug 6, 2023
1 parent 510b331 commit 5e73470
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/update-fonts-data-workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ async function main() {

await exec(`git config user.name "vercel-release-bot"`)
await exec(`git config user.email "infra+release@vercel.com"`)
await exec(`git checkout -b branchName`)
await exec(`git checkout -b ${branchName}`)
await exec(`git add -A`)
await exec(`git commit --message branchName`)
await exec(`git push origin branchName`)
await exec(`git commit --message ${branchName}`)
await exec(`git push origin ${branchName}`)

const repo = 'next.js'
const owner = 'vercel'
Expand Down Expand Up @@ -74,4 +74,4 @@ async function main() {
}
}

await main()
main().catch(console.error)

0 comments on commit 5e73470

Please sign in to comment.