Merge pull request #1 from pwshdevs/develop #1
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 Module | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| # Get the current version | |
| - uses: actions/checkout@v3 | |
| - name: Install and cache PowerShell modules | |
| id: psmodulecache | |
| uses: potatoqualitee/psmodulecache@v6.2.1 | |
| with: | |
| modules-to-cache: BuildHelpers, Pester, psake, PowerShellBuild, PSScriptAnalyzer | |
| - shell: pwsh | |
| # Give an id to the step, so we can reference it later | |
| id: check_if_versions_bumped | |
| run: | | |
| [version]$GalleryVersion = Get-NextNugetPackageVersion -Name PSFluentObjectValidation -ErrorAction Stop | |
| [version]$GithubVersion = Get-MetaData -Path ./PSFluentObjectValidation/PSFluentObjectValidation.psd1 -PropertyName ModuleVersion -ErrorAction Stop | |
| $bumped = $GithubVersion -ge $GalleryVersion | |
| # Set the output named "version_bumped" | |
| Write-Host "::set-output name=version_bumped::$bumped" | |
| - name: Publish to PSGallery | |
| shell: pwsh | |
| if: steps.check_if_versions_bumped.outputs.version_bumped == 'True' | |
| env: | |
| PSGALLERY_API_KEY: ${{ secrets.PS_GALLERY_KEY }} | |
| run: ./build.ps1 -Task Publish |