We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeaa2a2 commit 06c2cb4Copy full SHA for 06c2cb4
2 files changed
.github/workflows/release.yaml
@@ -28,7 +28,6 @@ jobs:
28
- uses: actions/setup-node@v3
29
with:
30
node-version: '14'
31
- cache: 'yarn'
32
33
- name: Publish Extension
34
shell: bash
@@ -37,8 +36,7 @@ jobs:
37
36
if [[ "${{ steps.check-tag.outputs.rc }}" == "true" ]]; then
38
args="--pre-release"
39
fi
40
- yarn install --frozen-lockfile
41
- yarn package $args
+ npx vsce package -o jsona-syntax.vsix $args
42
npx vsce publish --pat ${{ secrets.MARKETPLACE_TOKEN }} --packagePath jsona-syntax.vsix $args
43
44
- name: Publish Release
package.json
@@ -14,9 +14,6 @@
14
"type": "git",
15
"url": "https://github.com/jsona/vscode-jsona-syntax"
16
},
17
- "scripts": {
18
- "package": "vsce package -o jsona-syntax.vsix"
19
- },
20
"keywords": [
21
"jsona",
22
"syntax",
0 commit comments