feature: Refactor release workflow to use variable interpolation for tag and release names #release

This commit is contained in:
Keith Solomon
2025-03-25 11:03:27 -05:00
parent b80c256176
commit caf3f83965

View File

@@ -30,9 +30,7 @@ jobs:
TRUNKVER: ${{ steps.trunkver.outputs.trunkver }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: "$TRUNKVER"
release_name: "Release $TRUNKVER"
tag_name: ${{ TRUNKVER }}
release_name: Release ${{ TRUNKVER }}
body: |
${{ gitea.event.head_commit.message}}
draft: false
prerelease: false