Skip to content

Commit

Permalink
back to working version of game-ci + update to 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JoC0de committed Oct 29, 2023
1 parent 646a752 commit 5fc41a0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
path: ./src/NuGetForUnity.Packager/Assets/NuGet/Editor

- name: Unity - Packager (build .unitypackage)
uses: game-ci/unity-builder@v3.1.0
uses: game-ci/unity-builder@v2.1.2
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
uses: ./.github/actions/checkout

- name: Unity - Run tests
uses: game-ci/unity-test-runner@v3.1.0
uses: game-ci/unity-test-runner@v2.1.1
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public List<INugetPackage> FindPackagesById(INugetPackageIdentifier package)
return packages;
}

var matchingVersion = fetchedPackage.Versions.FindLast(version => package.InRange(version));
var matchingVersion = fetchedPackage.Versions.FindLast(package.InRange);
if (matchingVersion == null)
{
// no matching version found
Expand Down
2 changes: 1 addition & 1 deletion src/NuGetForUnity/Editor/Ui/NugetPreferences.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class NugetPreferences : SettingsProvider
/// <summary>
/// The current version of NuGet for Unity.
/// </summary>
public const string NuGetForUnityVersion = "4.0.1";
public const string NuGetForUnityVersion = "4.0.2";

private readonly GUIContent deleteX = new GUIContent("\u2716");

Expand Down
2 changes: 1 addition & 1 deletion src/NuGetForUnity/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.github-glitchenzo.nugetforunity",
"displayName": "NuGetForUnity",
"version": "4.0.1",
"version": "4.0.2",
"description": "A NuGet Package Manager for Unity",
"unity": "2018.4",
"keywords": [
Expand Down

0 comments on commit 5fc41a0

Please sign in to comment.