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 b36453b commit 6e9ba15Copy full SHA for 6e9ba15
.github/workflows/publish.yml
@@ -16,14 +16,18 @@ jobs:
16
node-version: 10
17
18
- run: npm ci
19
- - run: npm install -g gulp
+ - run: npm install -g gulp ovsx
20
- run: gulp 'vsix:release:package'
21
22
- name: upload vsix artifact
23
uses: actions/upload-artifact@v2
24
with:
25
- name: extension-artifact
26
- path: /*.vsix
+ name: extension.vsix
+ path: ./*.vsix
27
+
28
+ - name: download vsix artifact
29
+ uses: actions/download-artifact@v2
30
+ with:
31
32
- - run: npm install -g ovsx
- - run: ovsx publish extension-artifact -p ${{ secrets.OPEN_VSX_TOKEN }}
33
+ - run: ovsx publish extension.vsix -p ${{ secrets.OPEN_VSX_TOKEN }}
0 commit comments