From 5314ab60d24a1a95bb890f431e33622716686fcb Mon Sep 17 00:00:00 2001 From: colinmcneil Date: Thu, 12 Sep 2024 16:05:46 -0400 Subject: [PATCH] Update release workflow --- .github/workflows/build-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index a8f23f5..836c602 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -19,7 +19,7 @@ jobs: - name: "Install dependencies" run: npm install - name: "Build extension" - run: npm run package + run: npm run package labs-ai-tools-${{ github.event.release.tag_name }}.vsix - name: upload vsix uses: actions/upload-release-asset@v1 @@ -27,6 +27,6 @@ jobs: GITHUB_TOKEN: ${{ github.token }} with: upload_url: ${{ github.event.release.upload_url }} - asset_path: *.vsix + asset_path: labs-ai-tools-${{ github.event.release.tag_name }}.vsix asset_name: ${{ github.event.release.tag_name }}.vsix asset_content_type: application/vsix