We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 403469f commit bdb6ff2Copy full SHA for bdb6ff2
packages/github/src/index.ts
@@ -117,6 +117,12 @@ export class GithubHosting extends GitRepositoryHosting {
117
} = options
118
const { octokit } = this
119
const data = await project.getReleaseData()
120
+
121
+ if (!data.length) {
122
+ logger?.info('No release data found. Skipping release creation.')
123
+ return
124
+ }
125
126
const repositoryId = await this.getRepositoryId(project)
127
128
for (const releaseData of data) {
0 commit comments