Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 4 additions & 14 deletions .github/workflows/deploy-preview-module.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
on:
push:
branches:
- develop
paths-ignore:
- CHANGELOG.md
- .vscode/**
- .github/**
- images/**
- tests/**
- '**.md'
- '**.yml'
workflow_dispatch:
env:
buildFolderName: output
buildArtifactName: output
Expand All @@ -26,7 +16,7 @@ permissions:
checks: write # to allow the workflow to create checks
statuses: write # to allow the workflow to create statuses

# This workflow is triggered on push to the develop branch and deploys the module to the PowerShell Gallery as a preview version.
# This workflow is triggered manually and deploys the module to the PowerShell Gallery as a preview version.
jobs:
Build_Stage_Package_Module:
name: Package Module
Expand All @@ -38,11 +28,11 @@ jobs:
ref: ${{ github.head_ref }} # checkout the correct branch name
fetch-depth: 0
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0.9.15
uses: gittools/actions/gitversion/setup@v4.5
with:
versionSpec: 5.x
- name: Evaluate Next Version
uses: gittools/actions/gitversion/execute@v0.9.15
uses: gittools/actions/gitversion/execute@v4.5.0
with:
configFilePath: GitVersion.yml
- name: Build & Package Module
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
- name: Build & Package Module
shell: pwsh
run: ./build.ps1 -ResolveDependency -tasks pack
env:
ModuleVersion: ${{ env.gitVersion.NuGetVersionV2 }}
- name: Publish Build Artifact
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The format is based on and uses the types of changes according to [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## 0.32.0 - 2026-05-06

### Added

Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mode: ContinuousDelivery
next-version: 0.22.0
next-version: 0.32.0
major-version-bump-message: '(breaking\schange|breaking|major)\b'
minor-version-bump-message: '(adds?|features?|minor)\b'
patch-version-bump-message: '\s?(fix|patch)'
Expand Down
Loading