Skip to content

Commit

Permalink
Merge branch 'MonkeyModdingTroop:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Banane9 authored Jun 26, 2024
2 parents adb98dc + 3858e32 commit 865475f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ jobs:

- name: Move NuGet Packages
run: mv (Get-ChildItem -Recurse ./ -Include *.nupkg) ./

# Removes the version number from the package name
- name: Rename NuGet Packages
run: Get-ChildItem -Include *.nupkg -Path ./* | Rename-Item -NewName { $_.Name -Replace '\.\d+\.\d+\.\d+.*$','.nupkg' }

# Publish the NuGet package(s) as an artifact, so they can be used in the following jobs
- name: Upload NuGet Packages Artifact
Expand Down

0 comments on commit 865475f

Please sign in to comment.