From bbdceecbbb88efbdd78999dc04fd612d975b68c3 Mon Sep 17 00:00:00 2001 From: Mike Madeja Date: Sun, 15 Jun 2025 22:11:44 -0500 Subject: [PATCH] fixing path --- .github/workflows/CreateRelease.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"