Skip to content

Commit

Permalink
Merge pull request #86 from thegrizzlylabs/retry-dotnet-action
Browse files Browse the repository at this point in the history
chore(DotNet) Retry building demo
  • Loading branch information
guillaume-tgl authored Jun 5, 2024
2 parents c7612d8 + dd8f04f commit 9303649
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/dotnet-maui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,13 @@ jobs:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.1'
- name: Build demo
run: |
cd dotnet-maui
sudo dotnet workload restore
dotnet build SimpleDemo.csproj
# Retry in case plugin is not yet available on nuget
- uses: nick-fields/retry@v3
with:
timeout_minutes: 30
max_attempts: 2
retry_wait_seconds: 300
command: |
cd dotnet-maui
sudo dotnet workload restore
dotnet build SimpleDemo.csproj

0 comments on commit 9303649

Please sign in to comment.