Skip to content
This repository was archived by the owner on Dec 8, 2025. It is now read-only.

Commit 73eec5f

Browse files
committed
fix: set vsix file name and attempt upload released file
1 parent a852ce2 commit 73eec5f

2 files changed

Lines changed: 10 additions & 8 deletions

File tree

.releaserc.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"branch": "main",
3-
"branches": ["main"],
3+
"branches": [
4+
"main"
5+
],
46
"plugins": [
57
[
68
"@semantic-release/commit-analyzer",
@@ -45,17 +47,17 @@
4547
"failComment": false
4648
}
4749
],
48-
["@semantic-release/npm"],
50+
[
51+
"@semantic-release/npm"
52+
],
4953
[
5054
"@semantic-release/git",
5155
{
5256
"assets": [
53-
"compiler/package.json",
54-
"cli/package.json",
55-
"runtime/devicescript-vm/package.json",
56-
"vscode/package.json"
57+
"package.json",
58+
"devicescript.vsix"
5759
]
5860
}
5961
]
6062
]
61-
}
63+
}

vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"scripts": {
3636
"buildicons": "node ./scripts/updateFonts.js",
3737
"buildts": "node ../build.js --fast",
38-
"package": "vsce package",
38+
"package": "vsce package --out devicescript.vsix --yarn",
3939
"publish": "vsce publish",
4040
"publish-pre-release": "vsce publish --pre-release",
4141
"build": "yarn buildicons && yarn buildts",

0 commit comments

Comments
 (0)