We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d65f19a commit 05b4b66Copy full SHA for 05b4b66
.github/workflows/publish.yaml
@@ -20,6 +20,6 @@ jobs:
20
npm run compile
21
- name: Publish
22
if: success()
23
- run: vsce publish
+ run: npm run deploy
24
env:
25
VSCE_PAT: ${{ secrets.VSCE_PAT }}
package.json
@@ -65,7 +65,8 @@
65
"compile:server": "tsc -p ./server/tsconfig.json",
66
"watch:server": "tsc -w -p ./server/tsconfig.json",
67
"test": "node ./client/out/test/runTest.js",
68
- "lint": "eslint -c .eslintrc.js --ext .ts server/ && eslint -c .eslintrc.js --ext .ts client/"
+ "lint": "eslint -c .eslintrc.js --ext .ts server/ && eslint -c .eslintrc.js --ext .ts client/",
69
+ "deploy": "vsce publish"
70
},
71
"devDependencies": {
72
"@types/mocha": "^2.2.42",
0 commit comments