From 0cf4d5357aee9b5c98aa96d738d1622d2c452388 Mon Sep 17 00:00:00 2001 From: hoseacodes Date: Mon, 27 May 2024 12:40:08 -0500 Subject: [PATCH] fix(*): update release tag in pipeline --- .github/workflows/main.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index b7a294a..0e3065d 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -93,10 +93,9 @@ jobs: uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - tag: v${{ github.ref_name }} - ${{ steps.changelog.outputs.tag }} with: - tag_name: $tag - release_name: Release $tag + tag_name: ${{ steps.changelog.outputs.tag }} + release_name: Release ${{ steps.changelog.outputs.tag }} body: ${{steps.changelog.outputs.clean_changelog}} draft: false prerelease: false