We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f2ba56 commit 0273332Copy full SHA for 0273332
1 file changed
.github/workflows/build.yml
@@ -63,13 +63,6 @@ jobs:
63
64
- name: Test
65
run: dotnet test --no-restore --no-build
66
-
67
- - name: Move NuGet Packages
68
- run: mv (Get-ChildItem -Recurse ./ -Include *.nupkg) ./
69
70
- # Removes the version number from the package name
71
- - name: Rename NuGet Packages
72
- run: Get-ChildItem -Include *.nupkg -Path ./* | Rename-Item -NewName { $_.Name -Replace '\.\d+\.\d+\.\d+.*$','.nupkg' }
73
74
# Publish the NuGet package(s) as an artifact, so they can be used in the following jobs
75
- name: Upload NuGet Packages Artifact
@@ -78,7 +71,7 @@ jobs:
78
name: NuGet Packages
79
if-no-files-found: error
80
retention-days: 7
81
- path: ./*.nupkg
+ path: ./**/WikiIntegration.nupkg
82
83
76
# Only when it's not from a PR to avoid any funny packages in the cache
84
77
- name: Save NuGet Package Cache
0 commit comments