✨ feature: Refactor release workflow to use variable interpolation for tag and release names #release
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user