Created
June 1, 2016 13:04
-
-
Save vMarkusK/9913ac02d4596cc35eef56fb1cf10616 to your computer and use it in GitHub Desktop.
Publishes a PowerShell Module to PowerShell Gallery
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
$Path = 'C:\Users\mkraus\Documents\GitHub\PowerShell-Gallery-Test\PSGallery-Test' | |
$PublishParams = @{ | |
NuGetApiKey = 'your-API-key' # Swap this out with your API key | |
Path = $Path | |
} | |
Publish-Module @PublishParams | |
Find-Module PSGallery-Test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment