We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 275fcdc commit 3dbfdd5Copy full SHA for 3dbfdd5
1 file changed
.github/workflows/publish.yml
@@ -19,15 +19,9 @@ jobs:
19
env:
20
NUGET_KEY: ${{ secrets.PSGALLERY_KEY }}
21
run: |
22
+ Import-Module PowerShellGet -MinimumVersion 2.2.5 -Force
23
Write-Host "Publishing VSCode-Updater to PowerShell Gallery..."
24
- # Ensure module manifest exists
25
- if (-not (Test-Path "./VSCode-Updater.psd1")) {
26
- Write-Error "Module manifest not found. Expected VSCode-Updater.psd1 in repo root."
27
- exit 1
28
- }
29
-
30
- # Publish
31
Publish-Module `
32
-Path . `
33
-NuGetApiKey $env:NUGET_KEY `
0 commit comments