diff --git a/.github/workflows/CreateRelease.yml b/.github/workflows/CreateRelease.yml index 341ff43..b4580b1 100644 --- a/.github/workflows/CreateRelease.yml +++ b/.github/workflows/CreateRelease.yml @@ -69,7 +69,7 @@ jobs: $apiKey = '${{ secrets.POWERSHELLGALLERY }}' $modulePath = "PiHoleShell" # Change to your actual module folder $manifest = Get-ChildItem -Path $modulePath -Filter PiHoleShell.psd1 -Recurse | Select-Object -First 1 - Get-Content $($manifest.fullname) -replace '0.0.0', ${{ steps.bump.outputs.new_tag }} | Out-File $manifest.fullname + (Get-Content $($manifest.fullname)) -replace '0.0.0', ${{ steps.bump.outputs.new_tag }} | Out-File $manifest.fullname if (-not $manifest) { throw "No module manifest (*.psd1) found in $modulePath"