From 3015aed9b65075ce30fd346b580e64d411ab8d9c Mon Sep 17 00:00:00 2001 From: Kamil Nowinski Date: Wed, 6 May 2026 22:12:08 +0100 Subject: [PATCH 1/4] ver 0.32 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03176506..e930a21f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 From 87dd0403d6ae57f1455cc7eaef8c014bda2d54b3 Mon Sep 17 00:00:00 2001 From: Kamil Nowinski Date: Wed, 6 May 2026 22:29:28 +0100 Subject: [PATCH 2/4] GitVersion updated to 0.32 --- .github/workflows/publish-module.yml | 2 ++ GitVersion.yml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-module.yml b/.github/workflows/publish-module.yml index 69e74a09..75f8010a 100644 --- a/.github/workflows/publish-module.yml +++ b/.github/workflows/publish-module.yml @@ -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: diff --git a/GitVersion.yml b/GitVersion.yml index 18f734ae..77bb415b 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -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)' From 0c6b815ea5795983493c307bc0a243e2d38d9156 Mon Sep 17 00:00:00 2001 From: Kamil Nowinski Date: Wed, 6 May 2026 22:49:53 +0100 Subject: [PATCH 3/4] Deploy preview manually --- .github/workflows/deploy-preview-module.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/deploy-preview-module.yml b/.github/workflows/deploy-preview-module.yml index 75a0ef7e..feb97364 100644 --- a/.github/workflows/deploy-preview-module.yml +++ b/.github/workflows/deploy-preview-module.yml @@ -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 @@ -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 From fa712b638e605f90ad3098783ea6d4a8ea951153 Mon Sep 17 00:00:00 2001 From: Kamil Nowinski Date: Wed, 6 May 2026 22:56:45 +0100 Subject: [PATCH 4/4] gitversion updated --- .github/workflows/deploy-preview-module.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-preview-module.yml b/.github/workflows/deploy-preview-module.yml index feb97364..8aa90fb5 100644 --- a/.github/workflows/deploy-preview-module.yml +++ b/.github/workflows/deploy-preview-module.yml @@ -28,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