diff --git a/.github/workflows/deploy-preview-module.yml b/.github/workflows/deploy-preview-module.yml index 75a0ef7..8aa90fb 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 @@ -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 diff --git a/.github/workflows/publish-module.yml b/.github/workflows/publish-module.yml index 69e74a0..75f8010 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/CHANGELOG.md b/CHANGELOG.md index 0317650..e930a21 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 diff --git a/GitVersion.yml b/GitVersion.yml index 18f734a..77bb415 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)'