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 baadf6e commit 0101f72Copy full SHA for 0101f72
.github/workflows/ci.yaml renamed to .github/workflows/release.yaml
.github/workflows/webpack_ci renamed to .github/workflows/webpack_ci.yaml
@@ -12,7 +12,7 @@ jobs:
12
13
strategy:
14
matrix:
15
- node-version: [16.x, 18.x]
+ node-version: [16.x]
16
17
steps:
18
- uses: actions/checkout@v3
@@ -22,7 +22,18 @@ jobs:
22
with:
23
node-version: ${{ matrix.node-version }}
24
25
- - name: Build
+ - name: Build and package
26
run: |
27
npm install
28
npx webpack
29
+ npm install -g vsce
30
+ vsce package
31
+
32
+ - name: Copy dist artifacts to staging directory
33
+ run: mkdir staging && cp ./*.vsix staging
34
35
+ - name: Upload dist artifacts
36
+ uses: actions/upload-artifact@v3
37
+ with:
38
+ name: Package
39
+ path: staging
0 commit comments