From 808c03bae90b6b352801dc9753dcf0883263729f Mon Sep 17 00:00:00 2001 From: "raghavendrra.m" Date: Wed, 17 Jan 2024 14:12:33 +0100 Subject: [PATCH] fix: updating release name tag --- .github/workflows/tag-on-merge.yml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/.github/workflows/tag-on-merge.yml b/.github/workflows/tag-on-merge.yml index 47fdee3..3724a39 100644 --- a/.github/workflows/tag-on-merge.yml +++ b/.github/workflows/tag-on-merge.yml @@ -27,15 +27,12 @@ jobs: WITH_V: true PRERELEASE: false RELEASE_BRANCHES: main - - release: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Create a Release - uses: elgohr/Github-Release-Action@v5 - env: - GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} - GH_TOKEN: ${{ github.token }} - with: - title: ${{ needs.create_tag.outputs.tag }} + + - name: Create a Release + uses: elgohr/Github-Release-Action@v5 + env: + GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} + GH_TOKEN: ${{ github.token }} + with: + title: ${{ steps.create_tag.outputs.new_tag }} + \ No newline at end of file