Skip to content

Commit

Permalink
build: fix nuget search username in build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
R-unic committed Jul 21, 2024
1 parent 8de871f commit c1004a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
# Package the project
dotnet pack --configuration Release
VERSION_EXISTS=$(dotnet nuget search roblox-cs --source "github" | grep -c "$NEW_VERSION" || true)
VERSION_EXISTS=$(dotnet nuget search roblox-csharp --source "github" | grep -c "$NEW_VERSION" || true)
echo "VERSION_EXISTS=$VERSION_EXISTS"
if [ "$VERSION_EXISTS" -eq 0 ]; then
Expand Down

0 comments on commit c1004a3

Please sign in to comment.