Fix permissions issues and refactor #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish PowerShell Module | |
on: | |
release: | |
types: ["published"] | |
jobs: | |
publish-to-gallery: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Publish | |
env: | |
NUGET_KEY: ${{ secrets.NUGET_KEY }} | |
shell: pwsh | |
run: | | |
$modulePath = Join-Path $env:GITHUB_WORKSPACE "ps-copyid" | |
if (-not (Test-Path $modulePath)) { | |
throw "Module path not found: $modulePath" | |
} | |
try { | |
Write-Host "Publishing module from: $modulePath" | |
Publish-Module -Path $modulePath -NuGetApiKey $env:NUGET_KEY -Repository PSGallery -ErrorAction Stop | |
# Verify publish was successful | |
$moduleInfo = Test-ModuleManifest -Path (Join-Path $modulePath "ps-copyid.psd1") | |
$publishedModule = Find-Module -Name $moduleInfo.Name -RequiredVersion $moduleInfo.Version | |
if ($publishedModule) { | |
Write-Host "Successfully published $($moduleInfo.Name) version $($moduleInfo.Version)" | |
} else { | |
throw "Module verification failed after publish" | |
} | |
} | |
catch { | |
throw "Failed to publish module: $_" | |
} |