From cc8f0818a48633c51101ed5ac7a161f162e79b2b Mon Sep 17 00:00:00 2001 From: James Ives Date: Thu, 4 Jul 2024 21:42:09 -0400 Subject: [PATCH] build: update publish script --- .github/workflows/publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0d2a92f..f65864c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -53,15 +53,15 @@ jobs: - name: Create Release 🚀 if: github.ref == 'refs/heads/main' - uses: actions/create-release@v1 + uses: softprops/action-gh-release@v2.0.6 id: create_release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: v${{ env.VERSION }} - release_name: v${{ env.VERSION }} + name: v${{ env.VERSION }} draft: false prerelease: false + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Build Plugin run: npm run build