Skip to content

Merge pull request #1 from pwshdevs/develop #1

Merge pull request #1 from pwshdevs/develop

Merge pull request #1 from pwshdevs/develop #1

Workflow file for this run

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