Project

PSPublishModule

PSPublishModule is an open-source PowerShell and .NET project with packages, release history, and technical documentation.

Stars43
Forks13
Open issues2
PowerShell Gallery downloads13876
Releasev3.0.3
Language: C# Updated: 2026-04-12T07:25:36.0000000+00:00

Curated Examples

Run a PowerForge.Web quality pipeline

Run a CI-style PowerForge.Web pipeline for a website.

This pattern is useful when you want the same checks locally that CI should enforce for a website.

It is adapted from Docs/PowerForge.Web.WebsiteStarter.md.

Example

$env:POWERFORGE_ROOT = 'C:\Support\GitHub\PSPublishModule'

Set-Location 'C:\Support\GitHub\Website'

powerforge-web pipeline --config .\pipeline.json --mode ci

What this demonstrates

  • making the engine root explicit
  • running the site pipeline in CI mode
  • letting baselines and fail-on-new-issue policy catch regressions that a preview server may not report

Source