We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5c535cd + 037d378 commit 482f764Copy full SHA for 482f764
.github/workflows/ci.yml
@@ -37,4 +37,10 @@ jobs:
37
- uses: codecov/codecov-action@v3
38
with:
39
directory: ./coverage
40
- token: ${{ secrets.CODECOV_TOKEN }}
+ token: ${{ secrets.CODECOV_TOKEN }}
41
+
42
+ - name: Package VSIX
43
+ run: npm install -g vsce && vsce package
44
+ - uses: actions/upload-artifact@v2
45
+ with:
46
+ path: "*.vsix"
.vscodeignore
@@ -4,9 +4,10 @@ out/test/**
4
src/**
5
.gitignore
6
.yarnrc
7
-vsc-extension-quickstart.md
8
**/tsconfig.json
9
**/.eslintrc.json
10
**/*.map
11
**/*.ts
12
-.build-out/
+.build-out/
+coverage/
13
+docs/
0 commit comments