Skip to content

Commit 25ca855

Browse files
authoredSep 15, 2022
feat: log OpenVSX URL after publishing (#333)
1 parent e55593e commit 25ca855

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎lib/publish.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ module.exports = async (version, packagePath, logger) => {
2929
logger.log('Now publishing to OpenVSX');
3030

3131
await execa('ovsx', ['publish', packagePath], { stdio: 'inherit' });
32+
const ovsxUrl = `https://open-vsx.org/extension/${publisher}/${name}/${version}`;
33+
34+
logger.log(`The new ovsx version is available at ${ovsxUrl}`);
3235

3336
// TODO: uncomment after https://github.com/semantic-release/semantic-release/issues/2123
34-
// const ovsxUrl = `https://open-vsx.org/extension/${publisher}/${name}/${version}`;
3537
// const ovsxRelease = {
3638
// name: 'Open VSX Registry',
3739
// url: ovsxUrl

0 commit comments

Comments
 (0)
Please sign in to comment.