Skip to content

Commit 7120f40

Browse files
committed
1 parent d7ad71a commit 7120f40

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

.circleci/config.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,18 @@ jobs:
4343
- run:
4444
name: publish to marketplace
4545
command: npx vsce publish -p ${VSTOKEN}
46+
prerelease:
47+
docker:
48+
- image: circleci/node:latest
49+
steps:
50+
- checkout
51+
- *npm_install_update
52+
- run:
53+
name: install VS Code Extension Manager
54+
command: npm i vsce
55+
- run:
56+
name: pre-release to marketplace
57+
command: npx vsce publish --pre-release -p ${VSTOKEN}
4658

4759
workflows:
4860
version: 2
@@ -55,6 +67,15 @@ workflows:
5567
- test:
5668
requires:
5769
- build
70+
- prerelease:
71+
requires:
72+
- build
73+
- test
74+
filters:
75+
branches:
76+
ignore: /.*/
77+
tags:
78+
only: /^\d+\.\d*[13579]\.\d+$/
5879
- publish:
5980
requires:
6081
- build
@@ -63,4 +84,4 @@ workflows:
6384
branches:
6485
ignore: /.*/
6586
tags:
66-
only: /^\d+\.\d+\.\d+$/
87+
only: /^\d+\.\d*[02468]\.\d+$/

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/aurelia/vscode-extension"
1111
},
1212
"engines": {
13-
"vscode": "^1.51.1"
13+
"vscode": "^1.63.0"
1414
},
1515
"dependencies": {
1616
"lodash": "^4.17.21",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"theme": "dark"
3030
},
3131
"engines": {
32-
"vscode": "^1.51.1"
32+
"vscode": "^1.63.0"
3333
},
3434
"activationEvents": [
3535
"onStartupFinished"

0 commit comments

Comments
 (0)