Update PowerDataOps.psd1 #10
This file contains 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: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Update module version | |
shell: pwsh | |
run: | | |
$modulePath = "./PowerDataOps.psd1" | |
$module = Get-Content $modulePath | Out-String | ConvertFrom-StringData | |
$module.Version = [version]::new($module.Version.Major, $module.Version.Minor, $module.Version.Build + 1) | |
$module | Out-String | Set-Content $modulePath | |
- name: Publish to PSGallery | |
shell: pwsh | |
run: | | |
Publish-Module -Path "./path/to/your/module" -NuGetApiKey ${{ secrets.PS_GALLERY_KEY }} | |
env: | |
PS_GALLERY_KEY: ${{ secrets.PS_GALLERY_KEY }} |