chore: add branch to edge release script

This commit is contained in:
Daniel Roe 2023-03-03 10:34:47 +00:00
parent 654b9a21d7
commit 171288586d
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ async function main () {
const config = await loadChangelogConfig(process.cwd())
const latestTag = execaSync('git', ['describe', '--tags', '--abbrev=0']).stdout
const latestTag = execaSync('git', ['describe', '--tags', '--abbrev=0', 'main']).stdout
const commits = await getGitDiff(latestTag)
const bumpType = determineSemverChange(parseCommits(commits, config), config)