Skip to content

v1.7.7

v1.7.7 #19

Workflow file for this run

name: Publish Module
on:
workflow_dispatch:
release:
types: [published]
jobs:
lint-and-publish-to-gallery:
name: Run PSScriptAnalyzer and Publish to PSGallery
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install PSScriptAnalyzer module
shell: pwsh
run: |
Set-PSRepository PSGallery -InstallationPolicy Trusted
Install-Module PSScriptAnalyzer -ErrorAction Stop
- name: Lint with PSScriptAnalyzer
shell: pwsh
run: |
Invoke-ScriptAnalyzer -Path * -Recurse -Outvariable issues
$errors = $issues.Where({$_.Severity -eq 'Error'})
$warnings = $issues.Where({$_.Severity -eq 'Warning'})
if ($errors) {
Write-Error "There were $($errors.Count) errors and $($warnings.Count) warnings total." -ErrorAction Stop
} else {
Write-Output "There were $($errors.Count) errors and $($warnings.Count) warnings total."
}
- uses: actions/checkout@v3
- name: Build and publish
env:
NUGET_KEY: ${{ secrets.PSGALLERY_KEY }}
shell: pwsh
run: |
Set-PSRepository PSGallery -InstallationPolicy Trusted
Publish-Module -Path ./ -NuGetApiKey $env:NUGET_KEY -Force -Verbose