semantic-release-vsce 5.1.0 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yaml +2 -2
- package/lib/publish.js +3 -1
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ jobs:
|
|
|
22
22
|
|
|
23
23
|
steps:
|
|
24
24
|
- uses: actions/checkout@v3
|
|
25
|
-
- uses: volta-cli/action@
|
|
25
|
+
- uses: volta-cli/action@v3.0.2
|
|
26
26
|
with:
|
|
27
27
|
node-version: ${{ matrix.node-version }}
|
|
28
28
|
- run: npm ci
|
|
@@ -35,7 +35,7 @@ jobs:
|
|
|
35
35
|
|
|
36
36
|
steps:
|
|
37
37
|
- uses: actions/checkout@v3
|
|
38
|
-
- uses: volta-cli/action@
|
|
38
|
+
- uses: volta-cli/action@v3.0.2
|
|
39
39
|
- run: npm ci
|
|
40
40
|
- run: npm run release
|
|
41
41
|
env:
|
package/lib/publish.js
CHANGED
|
@@ -29,9 +29,11 @@ module.exports = async (version, packagePath, logger) => {
|
|
|
29
29
|
logger.log('Now publishing to OpenVSX');
|
|
30
30
|
|
|
31
31
|
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}`);
|
|
32
35
|
|
|
33
36
|
// TODO: uncomment after https://github.com/semantic-release/semantic-release/issues/2123
|
|
34
|
-
// const ovsxUrl = `https://open-vsx.org/extension/${publisher}/${name}/${version}`;
|
|
35
37
|
// const ovsxRelease = {
|
|
36
38
|
// name: 'Open VSX Registry',
|
|
37
39
|
// url: ovsxUrl
|