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