Skip to content

Commit 30eda42

Browse files
committed
use save path
1 parent 8d9e190 commit 30eda42

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,14 @@ jobs:
3939
uses: actions/download-artifact@v4
4040
with:
4141
name: extension
42+
path: .
4243

4344
- name: Publish to Visual Studio Marketplace
4445
uses: HaaLeo/publish-vscode-extension@v2
4546
with:
4647
pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
4748
registryUrl: https://marketplace.visualstudio.com
48-
extensionFile: "*.vsix"
49+
extensionFile: ${{ needs.build.outputs.vsixPath }}
4950

5051
publish-open-vsx:
5152
runs-on: ubuntu-latest
@@ -55,10 +56,11 @@ jobs:
5556
uses: actions/download-artifact@v4
5657
with:
5758
name: extension
59+
path: .
5860

5961
- name: Publish to Open VSX
6062
uses: HaaLeo/publish-vscode-extension@v2
6163
with:
6264
pat: ${{ secrets.OPEN_VSX_TOKEN }}
6365
registryUrl: https://open-vsx.org
64-
extensionFile: "*.vsix"
66+
extensionFile: ${{ needs.build.outputs.vsixPath }}

0 commit comments

Comments
 (0)