From 55524d5fe130c5fda8726aee61ca484de284ca9c Mon Sep 17 00:00:00 2001 From: Phil Asmar Date: Fri, 4 Oct 2024 10:20:57 -0400 Subject: [PATCH] ci: add ability to version all projects the same --- .autover/autover.json | 1 + .github/workflows/create-release-pr.yml | 2 +- .github/workflows/sync-main-dev.yml | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.autover/autover.json b/.autover/autover.json index c3825d69..44d9ff9c 100644 --- a/.autover/autover.json +++ b/.autover/autover.json @@ -14,6 +14,7 @@ } ], "UseCommitsForChangelog": false, + "UseSameVersionForAllProjects": true, "DefaultIncrementType": "Patch", "ChangeFilesDetermineIncrementType": true } \ No newline at end of file diff --git a/.github/workflows/create-release-pr.yml b/.github/workflows/create-release-pr.yml index 7f27a650..9fac1b99 100644 --- a/.github/workflows/create-release-pr.yml +++ b/.github/workflows/create-release-pr.yml @@ -49,7 +49,7 @@ jobs: dotnet-version: 8.0.x # Install AutoVer to automate versioning and changelog creation - name: Install AutoVer - run: dotnet tool install --global AutoVer --version 0.0.21 + run: dotnet tool install --global AutoVer --version 0.0.22 # Set up a git user to be able to run git commands later on - name: Setup Git User run: | diff --git a/.github/workflows/sync-main-dev.yml b/.github/workflows/sync-main-dev.yml index 63bf768b..020e35d8 100644 --- a/.github/workflows/sync-main-dev.yml +++ b/.github/workflows/sync-main-dev.yml @@ -51,7 +51,7 @@ jobs: dotnet-version: 8.0.x # Install AutoVer which is needed to retrieve information about the current release. - name: Install AutoVer - run: dotnet tool install --global AutoVer --version 0.0.21 + run: dotnet tool install --global AutoVer --version 0.0.22 # Set up a git user to be able to run git commands later on - name: Setup Git User run: | @@ -117,7 +117,7 @@ jobs: dotnet-version: 8.0.x # Install AutoVer which is needed to retrieve information about the current release. - name: Install AutoVer - run: dotnet tool install --global AutoVer --version 0.0.21 + run: dotnet tool install --global AutoVer --version 0.0.22 # Set up a git user to be able to run git commands later on - name: Setup Git User run: |