From fd3592364f28e17c12435e383b7f96ad87ccc66b Mon Sep 17 00:00:00 2001 From: Dave Skender <8432125+DaveSkender@users.noreply.github.com> Date: Sun, 29 Dec 2024 23:53:50 -0500 Subject: [PATCH] update config outs --- .github/workflows/deploy-package.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy-package.yml b/.github/workflows/deploy-package.yml index 739f1fd61..62b680450 100644 --- a/.github/workflows/deploy-package.yml +++ b/.github/workflows/deploy-package.yml @@ -55,15 +55,13 @@ jobs: run: cat src/gitversion.yml - name: Setup GitVersion Tool - run: | - # Install GitVersion as a global tool - dotnet tool install --global GitVersion.Tool --version 6.0.5 - dotnet-gitversion /showconfig -c src/gitversion.yml + run: dotnet tool install --global GitVersion.Tool --version 6.0.5 - name: Show GitVersion config - run: | - # Execute GitVersion and output JSON - dotnet-gitversion /output json /l console /config src/gitversion.yml + run: dotnet-gitversion /showconfig /config src/gitversion.yml + + - name: Show GitVersion config (with Json output) + run: dotnet-gitversion /output json /l console /config src/gitversion.yml - name: Validate preview settings run: |