File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -52,12 +52,12 @@ jobs:
5252 - name : Pack dll to NuGet package
5353 run : dotnet pack src/MandMCounter.Core/MandMCounter.Core.csproj --configuration release -p:Version='${{ steps.gitversion.outputs.MajorMinorPatch }}'
5454 - name : Publish Artifact
55- uses : actions/upload-artifact@v5
55+ uses : actions/upload-artifact@v6
5656 with :
5757 name : service
5858 path : ${{ github.workspace }}/service
5959 - name : Upload NuGet package to GitHub
60- uses : actions/upload-artifact@v5
60+ uses : actions/upload-artifact@v6
6161 with :
6262 name : nugetPackage
6363 path : src/MandMCounter.Core/bin/Release/
8787 if : github.ref == 'refs/heads/main' # only run job if on the main branch
8888 steps :
8989 - name : Download the build artifacts
90- uses : actions/download-artifact@v6
90+ uses : actions/download-artifact@v7
9191 - name : Azure Login
9292 uses : azure/login@v2
9393 with :
@@ -113,7 +113,7 @@ jobs:
113113
114114 # Push NuGet package to GitHub packages
115115 - name : Download nuget package artifact
116- uses : actions/download-artifact@v6
116+ uses : actions/download-artifact@v7
117117 - name : Prep packages
118118 run : dotnet nuget add source --username samsmithnz --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/SamSmithNZ-dotcom/index.json"
119119 - name : Push package to GitHub packages
You can’t perform that action at this time.
0 commit comments