diff --git a/.github/workflows/dotnet-demos.yml b/.github/workflows/dotnet-demos.yml index af1a03c0..74165274 100644 --- a/.github/workflows/dotnet-demos.yml +++ b/.github/workflows/dotnet-demos.yml @@ -42,20 +42,19 @@ jobs: with: dotnet-version: 6.0.x - # ************** UNCOMMENT AFTER RELEASE ***************** -# - name: Package restore -# run: dotnet restore - # ******************************************************** - # ************** REMOVE AFTER RELEASE ******************** - name: Pack .NET SDK run: dotnet pack -c Release working-directory: binding/dotnet - name: Add local NuGet package file - run: dotnet add package -s https://api.nuget.org/ -s ../../../binding/dotnet/Rhino/bin/Release Rhino + continue-on-error: true + run: dotnet add package -s ../../../binding/dotnet/Rhino/bin/Release Rhino # ******************************************************** + - name: Package restore + run: dotnet restore + - name: Dotnet build micdemo run: dotnet build -c MicDemo.Release @@ -86,18 +85,19 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Package restore - run: dotnet restore - # ************** REMOVE AFTER RELEASE ******************** - name: Pack .NET SDK run: dotnet pack -c Release working-directory: binding/dotnet - name: Add local NuGet package file + continue-on-error: true run: dotnet add package -s ../../../binding/dotnet/Rhino/bin/Release Rhino # ******************************************************** + - name: Package restore + run: dotnet restore + - name: Dotnet build micdemo run: dotnet build -c MicDemo.Release