Skip to content

Release Process

GitHub Action edited this page Jun 29, 2026 · 1 revision

Release Process

This page documents how to ship a new version of SPSUpdate. The process is centered on a single source of truth — the ModuleVersion field of SPSUpdate.Common.psd1 — and a v* git tag that triggers the GitHub release workflow.

Versioning policy

SPSUpdate follows Semantic Versioning 2.0.

Bump When
MAJOR (X.0.0) Breaking change in the .psd1 config/secrets format, the package layout, or a public module function signature.
MINOR (X.Y.0) New backward-compatible feature (new action, new public function, new optional setting).
PATCH (X.Y.Z) Bug fix or documentation-only change.

Release checklist

1. Bump the version

Edit one value in src/Modules/SPSUpdate.Common/SPSUpdate.Common.psd1:

ModuleVersion = '4.0.0'   # was '3.2.1'

This single change propagates automatically to:

  • The script banner ($SPSUpdateVersion is read from (Get-Module SPSUpdate.Common).Version)
  • The SPSUpdate Event Log header (SPSUpdate Version: 4.0.0)
  • The Get-Module SPSUpdate.Common version surfaced to users

2. Promote [Unreleased] in CHANGELOG.md

Move the [Unreleased] block to a dated section for the version being released and add a fresh empty [Unreleased] heading on top:

## [Unreleased]

## [4.0.0] - 2026-MM-DD

### Added
...

3. Replace RELEASE-NOTES.md

RELEASE-NOTES.md is used verbatim as the body of the GitHub Release. It must contain only the section of the version being released (no [Unreleased] header, no stacked history).

4. Validate locally

Import-Module .\src\Modules\SPSUpdate.Common\SPSUpdate.Common.psd1 -Force
(Get-Module SPSUpdate.Common).Version    # should match the bumped version
Invoke-Pester -Path .\tests
Invoke-ScriptAnalyzer -Path .\src -Recurse -Settings .\PSScriptAnalyzerSettings.psd1

5. Commit on a release branch

git checkout -b release/4.0.0
git add -A
git commit -m "release: v4.0.0"
git push -u origin release/4.0.0

Test the branch ZIP on a real farm first, then open a Pull Request, review, and merge to main.

6. Tag from main

git checkout main
git pull
git tag v4.0.0
git push origin v4.0.0

The .github/workflows/release.yml workflow runs automatically. It:

  1. Packages the contents of src/ into SPSUpdate-v4.0.0.zip (the archive extracts straight to SPSUpdate.ps1, Config\ and Modules\, with no src/ wrapper).
  2. Publishes a GitHub Release using RELEASE-NOTES.md as the body.
  3. Attaches the ZIP and LICENSE to the release.

7. Verify

Undoing a release

If you tagged too early:

git tag -d v4.0.0
git push origin --delete v4.0.0

Then delete the auto-created Release on GitHub, fix what needs fixing, commit, and re-tag from the new HEAD.

⚠️ Don't move a published tag that has been live for more than a few minutes. Prefer publishing a vX.Y.(Z+1) patch release instead of rewriting vX.Y.Z.

See also