Commit 519d060 1 parent ba30035 commit 519d060 Copy full SHA for 519d060
File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 53
53
54
54
# Publish Artifacts
55
55
- name : ' Publish Artifacts'
56
- uses : actions/upload-artifact@v1.0 .0
56
+ uses : actions/upload-artifact@v4.4 .0
57
57
with :
58
- name : ' artifactory '
58
+ name : artifactory_${{ matrix.configuration }}
59
59
path : ./Analogy.LogViewer.LoggersTree/bin/${{ matrix.configuration }}
60
60
push-nuget :
61
61
name : ' Push NuGet Packages'
@@ -64,12 +64,12 @@ jobs:
64
64
runs-on : windows-latest
65
65
steps :
66
66
- name : ' Download Artifact'
67
- uses : actions/download-artifact@v1
67
+ uses : actions/download-artifact@v4.1.7
68
68
with :
69
- name : ' artifactory '
69
+ name : artifactory_Release
70
70
- name : ' Dotnet NuGet Push'
71
71
run : |
72
- Get-ChildItem .\artifactory -Filter *.nupkg |
72
+ Get-ChildItem ./ -Filter *.nupkg |
73
73
Where-Object { !$_.Name.Contains('preview') } |
74
74
ForEach-Object { dotnet nuget push $_ --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{secrets.NUGET_API_KEY}} }
75
75
shell : pwsh
You can’t perform that action at this time.
0 commit comments