Skip to content

Commit

Permalink
Merge branch 'defect/begian-edit-method-change' of https://github.com…
Browse files Browse the repository at this point in the history
  • Loading branch information
aloksahoonet committed Nov 5, 2024
2 parents c02f49c + 441935f commit 6235f87
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -91,7 +91,7 @@ jobs:
- name: Archive Build Output
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: sourcegrid
path: |
Expand All @@ -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: |
Expand Down

0 comments on commit 6235f87

Please sign in to comment.