Skip to content

Commit

Permalink
fix(workflow): update MSI file renaming to use hyphen instead of unde…
Browse files Browse the repository at this point in the history
…rscore
  • Loading branch information
amnweb committed Dec 30, 2024
1 parent 70ada10 commit 951ee47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
.\venv\Scripts\Activate
$msiFile = Get-ChildItem -Path dist/out -Filter "Icon Extractor-*.msi"
if ($msiFile) {
$newName = $msiFile.Name -replace 'Icon Extractor', 'icon_extractor'
$newName = $msiFile.Name -replace 'Icon Extractor', 'icon-extractor'
Rename-Item -Path $msiFile.FullName -NewName $newName
}
shell: pwsh
Expand Down

0 comments on commit 951ee47

Please sign in to comment.