Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Jul 13, 2021
1 parent 7a232e7 commit 545b717
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ async function releasePackage(log: Logger) {
await runIfNotDry('git', ['push', 'origin', `refs/tags/${tag}`])
await runIfNotDry('git', ['push'])

log('Releasing to GitHub Releases...')
const repo = await getRepoName()
log(`Releasing to ${repo} of GitHub Releases...`)
if (!skipChangelog && !isDryRun) {
await releaseGitHub(
tag,
Expand Down Expand Up @@ -197,7 +198,7 @@ async function releaseGitHub(
const repo = await getRepoName()

return await octokit.repos.createRelease({
owner: user.login,
owner: 'intlify',
repo,
tag_name: tag,
name: releaseName,
Expand Down

0 comments on commit 545b717

Please sign in to comment.