We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents adb98dc + 3858e32 commit 865475fCopy full SHA for 865475f
1 file changed
.github/workflows/build.yml
@@ -68,6 +68,10 @@ jobs:
68
69
- name: Move NuGet Packages
70
run: mv (Get-ChildItem -Recurse ./ -Include *.nupkg) ./
71
+
72
+ # Removes the version number from the package name
73
+ - name: Rename NuGet Packages
74
+ run: Get-ChildItem -Include *.nupkg -Path ./* | Rename-Item -NewName { $_.Name -Replace '\.\d+\.\d+\.\d+.*$','.nupkg' }
75
76
# Publish the NuGet package(s) as an artifact, so they can be used in the following jobs
77
- name: Upload NuGet Packages Artifact
0 commit comments