HelpOut.GitHubWorkflow.PSDevOps.ps1
#requires -Module HelpOut #requires -Module PSDevOps Push-Location $PSScriptRoot New-GitHubWorkflow -Name "Test, Tag, Release, and Publish" -On Demand, Push -Job PowerShellStaticAnalysis, TestPowerShellOnLinux, TagReleaseAndPublish | Set-Content .\.github\workflows\TestReleaseAndPublish.yml -Encoding UTF8 -PassThru New-GitHubWorkflow -Name "Run EZOut" -On Push -Job RunEZOut | Set-Content .\.github\workflows\RunEZOut.yml -Encoding UTF8 -PassThru Pop-Location |