Skip to content

Commit 99747e6

Browse files
committed
Fix vsix fetch
1 parent 45e6e68 commit 99747e6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,6 @@ jobs:
5454
file: ^github-actions-enhanced-.*\.vsix$
5555
regex: true
5656
- name: 🚀 Publish to VS Code Marketplace
57-
run: npx @vscode/vsce publish --azure-credential -i github-actions-enhanced-*.vsix
57+
run: |
58+
VSIX_FILE=$(ls github-actions-enhanced-*.vsix | head -1)
59+
npx @vscode/vsce publish --azure-credential -i "$VSIX_FILE"

0 commit comments

Comments
 (0)