Skip to content

Commit

Permalink
chore(Root): fix tag assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
kikoruiz committed Aug 22, 2024
1 parent 8203088 commit cfa13b5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/publish-tagged-packages.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ async function publishPackages() {
packagesToPublish.forEach(async packageName => {
const packageConfig = getConfig(packageName)
const {name} = packageConfig
tag = tag.startsWith(DEPENDABOT_TAG) ? DEPENDABOT_TAG : tag
const version = await getPackageVersion({name, tag})
const version = await getPackageVersion({name, tag: tag.startsWith(DEPENDABOT_TAG) ? DEPENDABOT_TAG : tag})

// Set the new tagged version.
packageConfig.version = version
Expand Down

0 comments on commit cfa13b5

Please sign in to comment.