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 +