Skip to content

Commit 44018af

Browse files
committed
fix: update release workflow to use tag name directly for release title
1 parent 8828f45 commit 44018af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
# Use the tag name from the Git ref
8989
tag: ${{ github.ref_name }}
9090
# Use the tag name for the release name
91-
name: v${{ github.ref_name }}
91+
name: ${{ github.ref_name }}
9292
# Use the release.md content as the release body (preferred) or fallback to tag annotation
9393
body: ${{ steps.tag_data.outputs.release_notes }}
9494
# Path to the artifact to upload
@@ -128,7 +128,7 @@ jobs:
128128
# Create release using GitHub CLI
129129
gh release create "${{ steps.version_info.outputs.xposed_tag }}" \
130130
--repo "Xposed-Modules-Repo/com.wizpizz.onepluspluslauncher" \
131-
--title "v${{ github.ref_name }}" \
131+
--title "${{ github.ref_name }}" \
132132
--notes-file "release_body.md" \
133133
"app/build/outputs/apk/release/app-release.apk" || \
134134
# If release exists, upload to existing release

0 commit comments

Comments
 (0)