From 441935f048ca2307e9d7973958f553c7cfea15d7 Mon Sep 17 00:00:00 2001 From: Saba Date: Tue, 5 Nov 2024 20:29:35 +0530 Subject: [PATCH] task version correction and EA17 reason --- .github/workflows/main.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c543776..50f5a5c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -66,7 +66,7 @@ jobs: - name: Archive Build Log - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: ${{ success() || failure() }} with: name: Compile_Solution_log @@ -91,7 +91,7 @@ jobs: - name: Archive Build Output - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: sourcegrid path: | @@ -100,12 +100,14 @@ jobs: - name: Create Nuget Packages id: createNupkg + #removed version parameter from nuget pack command since the version is statically defined in the nuspec file. This release is based on the source code from Clearcase 4.40 EA16 which is enhanced for a bug fix. + #Hence the next version of the release is set as 4.40 EA17 run: | - nuget pack .nuget\SourceGrid.nuspec -Version $($env:GitVersion_MajorMinorPatch) + nuget pack .nuget\SourceGrid.nuspec Write-Host "::set-output name=nupkg-sourcegrid::siemens.sourcegrid.$($env:GitVersion_MajorMinorPatch).nupkg" - name: Archive NuGet Packages - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: nuget-sourceGrid path: |