From c0cc8f29b5a5642fa1e7712628f01b7d15046e34 Mon Sep 17 00:00:00 2001 From: Tim Heuer Date: Wed, 29 Nov 2023 19:50:45 -0800 Subject: [PATCH] Update publish.yaml --- .github/workflows/publish.yaml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 12b56a8..06395ba 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -33,6 +33,16 @@ jobs: uses: actions/download-artifact@v3 with: name: ${{ github.event.repository.name }}.vsix + + - name: Tag and Release + id: tag_release + uses: softprops/action-gh-release@v1 + with: + body: Release ${{ env.VERSION }} + tag_name: ${{ env.VERSION }} + generate_release_notes: true + files: | + **/*.vsix - name: Upload to VsixGallery uses: timheuer/openvsixpublish@v1 @@ -46,14 +56,4 @@ jobs: extension-file: '${{ github.event.repository.name }}.vsix' publish-manifest-file: 'vs-publish.json' personal-access-code: ${{ secrets.VS_PUBLISHER_ACCESS_TOKEN }} - - - name: Tag and Release - id: tag_release - uses: softprops/action-gh-release@v1 - with: - body: Release ${{ env.VERSION }} - tag_name: ${{ env.VERSION }} - generate_release_notes: true - files: | - **/*.vsix - \ No newline at end of file +