Skip to content

Commit 5bf0d3a

Browse files
committed
chore: Update tag_name and name in GitHub Actions workflow for Windows
The tag_name and name fields in the GitHub Actions workflow for Windows have been updated to include the 'v' prefix before the version number. This change ensures consistency with the release naming convention and improves clarity when viewing the releases on GitHub.
1 parent aa54034 commit 5bf0d3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/windows.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ jobs:
8787
id: create_release
8888
uses: softprops/action-gh-release@v2
8989
with:
90-
tag_name: ${{ env.VERSION }}
91-
name: Release ${{ env.VERSION }}
90+
tag_name: v${{ env.VERSION }}
91+
name: Release v${{ env.VERSION }}
9292
body: |
9393
![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/amnweb/yasb/v${{ env.VERSION }}/${{ env.FILENAME }})
9494
${{ steps.changelog.outputs.changes }}

0 commit comments

Comments
 (0)