Skip to content

Commit

Permalink
Fix: Remove redundant release name
Browse files Browse the repository at this point in the history
The release action was setting the release name to the same value as the tag. This was unnecessary, so the release name is now set directly to the tag value.
  • Loading branch information
RedAtman committed Jul 31, 2024
1 parent f271fc8 commit 07aa256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
name: ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}

# - name: Set up Git
Expand Down

0 comments on commit 07aa256

Please sign in to comment.