diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 7fcfeb2..a5fa848 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -26,5 +26,5 @@ jobs:
- name: Find and publish the package
run: |
- PACKAGE_PATH=$(find . -name "*.nupkg" | head -n 1)
+ PACKAGE_PATH=$(find ./RobloxCS/bin/Release -name "*.nupkg" -type f -print0 | xargs -0 ls -1t | head -n 1)
dotnet nuget push "$PACKAGE_PATH" --api-key ${{ secrets.GITHUB_TOKEN }} --source "github"
\ No newline at end of file
diff --git a/RobloxCS/roblox-cs.csproj b/RobloxCS/roblox-cs.csproj
index f8d61ab..f13816d 100644
--- a/RobloxCS/roblox-cs.csproj
+++ b/RobloxCS/roblox-cs.csproj
@@ -7,6 +7,7 @@