Skip to content

Commit 671a521

Browse files
committed
Fix release naming: use simple version format (v1.0.0 not 'Key Light Controller v1.0.0')
1 parent 152af55 commit 671a521

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
VERSION=${{ steps.get_version.outputs.VERSION }}
186186
187187
cat << EOF > release_notes.md
188-
# Key Light Controller ${VERSION}
188+
# ${VERSION}
189189
190190
## 📦 Installation
191191
@@ -230,7 +230,7 @@ jobs:
230230
uses: softprops/action-gh-release@v2
231231
with:
232232
tag_name: ${{ steps.get_version.outputs.VERSION }}
233-
name: Key Light Controller ${{ steps.get_version.outputs.VERSION }}
233+
name: ${{ steps.get_version.outputs.VERSION }}
234234
body_path: release_notes.md
235235
draft: false
236236
prerelease: ${{ contains(steps.get_version.outputs.VERSION, 'beta') || contains(steps.get_version.outputs.VERSION, 'alpha') }}

0 commit comments

Comments
 (0)