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: |