-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #153 from samsmithnz/UpdatingPackagesJan27
Updating packages
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,14 +50,14 @@ jobs: | |
- name: .NET pack tool to NuGet package | ||
run: dotnet pack src/DotNetCensus/DotNetCensus.csproj -c Release -p:Version='${{ steps.gitversion.outputs.SemVer }}' | ||
- name: Upload package back to GitHub | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: nugetToolPackage | ||
path: src/DotNetCensus/nupkg | ||
- name: .NET pack core projecty to NuGet package | ||
run: dotnet pack src/DotNetCensus.Core/DotNetCensus.Core.csproj -c Release -p:Version='${{ steps.gitversion.outputs.SemVer }}' | ||
- name: Upload package back to GitHub | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: nugetCorePackage | ||
path: src/DotNetCensus.Core/nupkg | ||
|
@@ -69,7 +69,7 @@ jobs: | |
if: github.ref == 'refs/heads/main' | ||
steps: | ||
- name: Run Sonarcloud test | ||
uses: samsmithnz/[email protected].0 | ||
uses: samsmithnz/[email protected].1 | ||
with: | ||
projects: 'src/DotNetCensus/DotNetCensus.csproj,src/DotNetCensus.Core/DotNetCensus.Core.csproj,src/DotNetCensus.Tests/DotNetCensus.Tests.csproj' | ||
dotnet-version: '8.0.x' | ||
|
@@ -87,12 +87,12 @@ jobs: | |
if: github.ref == 'refs/heads/main' | ||
steps: | ||
- name: Download artifact from build job | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: nugetToolPackage | ||
path: nugetToolPackage | ||
- name: Download artifact from build job | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: nugetCorePackage | ||
path: nugetCorePackage | ||
|