Skip to content

Commit

Permalink
Fixed tagging name.
Browse files Browse the repository at this point in the history
  • Loading branch information
DJGosnell committed Nov 15, 2023
1 parent a266f6d commit cff9118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DtronixCommon/tag_release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if ($ChangedFiles -gt 0)

$projectFile = Get-ChildItem -filter "*.csproj"
$version = Select-Xml -Path $projectFile -XPath "Project/PropertyGroup/Version" | Select-Object -ExpandProperty Node
$tag = $projectFile.BaseName + "-v" + $version.InnerText
$tag = "v" + $version.InnerText

$confirmation = Read-Host "Tag current commit with '$tag' (y/n):"
if ($confirmation -eq 'y') {
Expand Down

0 comments on commit cff9118

Please sign in to comment.