Build/WhereFor.GitHubWorkflow.PSDevOps.ps1
#requires -Module PSDevOps Import-BuildStep -SourcePath ( Join-Path $PSScriptRoot 'GitHub' ) -BuildSystem GitHubWorkflow Push-Location ($PSScriptRoot | Split-Path) New-GitHubWorkflow -Name "Build WhereFor Module" -On Push, PullRequest, Demand -Job TestPowerShellOnLinux, TagReleaseAndPublish, BuildWhereFor -Environment ([Ordered]@{ REGISTRY = 'ghcr.io' IMAGE_NAME = '${{ github.repository }}' }) -OutputPath .\.github\workflows\BuildWhereFor.yml Pop-Location |