Skip to content

Commit

Permalink
chore: add branch to edge release script
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Mar 3, 2023
1 parent 654b9a2 commit 1712885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bump-edge.ts
Expand Up @@ -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)
Expand Down

0 comments on commit 1712885

Please sign in to comment.