Skip to content

Commit

Permalink
try continue-on-error: true
Browse files Browse the repository at this point in the history
  • Loading branch information
albho committed Aug 9, 2024
1 parent d8c5b29 commit c480a09
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/dotnet-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit c480a09

Please sign in to comment.