Skip to content

Commit

Permalink
enable gh releases for all repos
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Feb 13, 2024
1 parent 938a7b9 commit 61bc7e6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions scripts/src/tag-and-release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ export default async function() {
errorMap['.'] = error
})

// for (const [subrepoSubdir, subrepo] of Object.entries(subrepoMap)) {
// await tagAndReleaseSubrepo(monorepoDir, monorepoVersion, subrepoSubdir, subrepo)
// .catch((error: Error) => {
// errorMap[subrepoSubdir] = error
// })
// }
for (const [subrepoSubdir, subrepo] of Object.entries(subrepoMap)) {
await tagAndReleaseSubrepo(monorepoDir, monorepoVersion, subrepoSubdir, subrepo)
.catch((error: Error) => {
errorMap[subrepoSubdir] = error
})
}

const errorCnt = Object.keys(errorMap).length
if (errorCnt) {
Expand Down

0 comments on commit 61bc7e6

Please sign in to comment.