From 4cb643458498b7b8fb12283fec8f5d4ec63751d2 Mon Sep 17 00:00:00 2001 From: B Harper Date: Sun, 26 Oct 2025 18:33:55 +1100 Subject: [PATCH] Fix workflow: Package .vsix file before creating GitHub release --- .github/workflows/publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 13afb37..a41b122 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,7 +28,9 @@ jobs: npm version $VERSION --no-git-tag-version - name: Package extension - run: npm run vscode:prepublish + run: | + npm run vscode:prepublish + npx @vscode/vsce package - name: Publish to marketplace run: npx @vscode/vsce publish --pat ${{ secrets.VCSE_PAT }} @@ -36,7 +38,7 @@ jobs: - name: Create GitHub Release uses: softprops/action-gh-release@v1 with: - files: ./humanagent-mcp-*.vsix + files: "*.vsix" tag_name: ${{ github.ref_name }} name: Release ${{ github.ref_name }} generate_release_notes: true