From 4f934377977ceb5480cfa4c2adae2d44d7616651 Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Thu, 30 Jan 2025 18:49:39 -0800 Subject: [PATCH] Fix creating github release --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0402d5e8b4..88388fac7e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -70,8 +70,10 @@ jobs: echo "version=$VERSION" >> $GITHUB_OUTPUT - name: Create Git Tag + id: create_tag run: | VERSION=v${{ steps.get_version.outputs.version }} + echo "tag=$VERSION" >> $GITHUB_OUTPUT echo "Tagging with $VERSION" git tag "$VERSION" git push origin "$VERSION" @@ -104,6 +106,7 @@ jobs: - name: Create GitHub Release uses: softprops/action-gh-release@v1 with: + tag_name: ${{ steps.create_tag.outputs.tag }} files: "*.vsix" # body: ${{ steps.changelog.outputs.content }} generate_release_notes: true