Skip to content

Commit 5ea52ad

Browse files
committed
Fix typo in publish gh workflow
1 parent b36453b commit 5ea52ad

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/publish.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,18 @@ jobs:
1616
node-version: 10
1717

1818
- run: npm ci
19-
- run: npm install -g gulp
19+
- run: npm install -g gulp ovsx
2020
- run: gulp 'vsix:release:package'
2121

2222
- name: upload vsix artifact
2323
uses: actions/upload-artifact@v2
2424
with:
25-
name: extension-artifact
26-
path: /*.vsix
25+
name: extension
26+
path: ./*.vsix
27+
28+
- name: download vsix artifact
29+
uses: actions/download-artifact@v2
30+
with:
31+
name: extension.vsix
2732

28-
- run: npm install -g ovsx
29-
- run: ovsx publish extension-artifact -p ${{ secrets.OPEN_VSX_TOKEN }}
33+
- run: ovsx publish **/*.vsix -p ${{ secrets.OPEN_VSX_TOKEN }}

0 commit comments

Comments
 (0)