diff --git a/.github/workflows/dotnet-demos.yml b/.github/workflows/dotnet-demos.yml index 3db7362e..c089d54f 100644 --- a/.github/workflows/dotnet-demos.yml +++ b/.github/workflows/dotnet-demos.yml @@ -42,9 +42,6 @@ jobs: with: dotnet-version: 6.0.x - - name: Package restore - run: dotnet restore --source https://api.nuget.org/v3/index.json - # ************** REMOVE AFTER RELEASE ******************** - name: Pack .NET SDK run: dotnet pack -c Release @@ -54,6 +51,9 @@ jobs: run: dotnet add package -s ../../../binding/dotnet/Rhino/bin/Release Rhino # ******************************************************** + - name: Package restore + run: dotnet restore -s ../../../binding/dotnet/Rhino/bin/Release Rhino -s https://api.nuget.org/ + - name: Dotnet build micdemo run: dotnet build -c MicDemo.Release