Skip to content

Commit

Permalink
feat(publish): return release info object (#2)
Browse files Browse the repository at this point in the history
This makes semantic-release include a link to the extension
in the comment that is posted on GitHub issues and PRs
  • Loading branch information
felixfbecker authored and GabeDuarteM committed Aug 22, 2018
1 parent 2502f58 commit 4b47134
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ const publish = async ({ extensionId, target, asset }: PluginConfig) => {
}
throw new AggregateError(errors)
}

return {
name: "Chrome Web Store",
url: `https://chrome.google.com/webstore/detail/${extensionId}`,
}
}

export default publish

0 comments on commit 4b47134

Please sign in to comment.